summaryrefslogtreecommitdiffstats
path: root/test/Sema/enum.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/enum.c')
-rw-r--r--test/Sema/enum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/enum.c b/test/Sema/enum.c
index 31649e0ae9..262cab50a5 100644
--- a/test/Sema/enum.c
+++ b/test/Sema/enum.c
@@ -1,4 +1,4 @@
-// RUN: clang-cc %s -fsyntax-only -verify -pedantic
+// RUN: %clang_cc1 %s -fsyntax-only -verify -pedantic
enum e {A,
B = 42LL << 32, // expected-warning {{ISO C restricts enumerator values to range of 'int'}}
C = -4, D = 12456 };