aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/enum.c
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-10-11 00:18:28 +0000
committerChris Lattner <sabre@nondot.org>2007-10-11 00:18:28 +0000
commit3b427b3ba518f7a7293458c2d3d92eebd8458d87 (patch)
treec92875d0af402601eeab2f3fd205f7bf1f5c771d /test/Sema/enum.c
parent22b73ba6c6bbac2b117f7e27d53ea683ede14c68 (diff)
rename -parse-ast-print to -ast-print
rename -parse-ast-dump to -ast-dump remove -parse-ast, which is redundant with -fsyntax-only git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42852 91177308-0d34-0410-b5e6-96231b3b80d8
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 1787c4b6f8..79a92c8f2d 100644
--- a/test/Sema/enum.c
+++ b/test/Sema/enum.c
@@ -1,4 +1,4 @@
-// RUN: clang %s -parse-ast -verify -pedantic
+// RUN: clang %s -fsyntax-only -verify -pedantic
enum e {A,
B = 42LL << 32, // expected-warning {{ISO C restricts enumerator values to range of 'int'}}