Driver: tweak handling of '--analyze' to invoke
[clang.git] / test / Sema / short-enums.c
blob6605c4e8fc0774640e5d147fb6538018f1f92c74
1 // RUN: not %clang_cc1 -fsyntax-only %s -verify
2 // RUN: %clang_cc1 -fshort-enums -fsyntax-only %s -verify
4 enum x { A };
5 int t0[sizeof(enum x) == 1 ? 1 : -1];