diff options
Diffstat (limited to 'test/Parser/pointer-arithmetic.c')
-rw-r--r-- | test/Parser/pointer-arithmetic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Parser/pointer-arithmetic.c b/test/Parser/pointer-arithmetic.c index 4403d20c11..3556c9aa4d 100644 --- a/test/Parser/pointer-arithmetic.c +++ b/test/Parser/pointer-arithmetic.c @@ -1,4 +1,4 @@ -// RUN: clang -parse-ast -verify %s +// RUN: clang -fsyntax-only -verify %s int *test1(int *a) { return a + 1; } int *test2(int *a) { return 1 + a; } |