diff options
Diffstat (limited to 'test/Parser')
-rw-r--r-- | test/Parser/CompoundStmtScope.c | 2 | ||||
-rw-r--r-- | test/Parser/argument_redef.c | 2 | ||||
-rw-r--r-- | test/Parser/attributes.c | 2 | ||||
-rw-r--r-- | test/Parser/bad-control.c | 2 | ||||
-rw-r--r-- | test/Parser/builtin_classify_type.c | 2 | ||||
-rw-r--r-- | test/Parser/builtin_types_compatible.c | 2 | ||||
-rw-r--r-- | test/Parser/char-literal-printing.c | 2 | ||||
-rw-r--r-- | test/Parser/check_cast.c | 2 | ||||
-rw-r--r-- | test/Parser/compound_literal.c | 2 | ||||
-rw-r--r-- | test/Parser/cxx-reference.cpp | 2 | ||||
-rw-r--r-- | test/Parser/function-decls.c | 2 | ||||
-rw-r--r-- | test/Parser/goto-ident.c | 2 | ||||
-rw-r--r-- | test/Parser/if-scope-c90.c | 2 | ||||
-rw-r--r-- | test/Parser/if-scope-c99.c | 2 | ||||
-rw-r--r-- | test/Parser/implicit-casts.c | 2 | ||||
-rw-r--r-- | test/Parser/ocu_vector_components.c | 2 | ||||
-rw-r--r-- | test/Parser/parmvardecl_conversion.c | 2 | ||||
-rw-r--r-- | test/Parser/pointer-arithmetic.c | 2 | ||||
-rw-r--r-- | test/Parser/pointer_promotion.c | 2 | ||||
-rw-r--r-- | test/Parser/recovery-1.c | 2 | ||||
-rw-r--r-- | test/Parser/typeof.c | 2 |
21 files changed, 21 insertions, 21 deletions
diff --git a/test/Parser/CompoundStmtScope.c b/test/Parser/CompoundStmtScope.c index 4d1da43e25..9aadbceac1 100644 --- a/test/Parser/CompoundStmtScope.c +++ b/test/Parser/CompoundStmtScope.c @@ -1,4 +1,4 @@ -// RUN: clang -parse-ast -verify %s +// RUN: clang -fsyntax-only -verify %s int foo() { { diff --git a/test/Parser/argument_redef.c b/test/Parser/argument_redef.c index 2dce5ab4bd..d831d48b5a 100644 --- a/test/Parser/argument_redef.c +++ b/test/Parser/argument_redef.c @@ -1,4 +1,4 @@ -/* RUN: clang -parse-ast -verify %s +/* RUN: clang -fsyntax-only -verify %s */ int foo(int A) { /* expected-error {{previous definition is here}} */ diff --git a/test/Parser/attributes.c b/test/Parser/attributes.c index ecd1237aad..7161d6c22b 100644 --- a/test/Parser/attributes.c +++ b/test/Parser/attributes.c @@ -1,4 +1,4 @@ -// RUN: clang -parse-ast -verify %s -pedantic +// RUN: clang -fsyntax-only -verify %s -pedantic static __inline void __attribute__((__always_inline__, __nodebug__)) // expected-warning {{extension used}} foo (void) diff --git a/test/Parser/bad-control.c b/test/Parser/bad-control.c index caad1f19c9..fab9fa3039 100644 --- a/test/Parser/bad-control.c +++ b/test/Parser/bad-control.c @@ -1,4 +1,4 @@ -/* RUN: clang -parse-ast -verify %s +/* RUN: clang -fsyntax-only -verify %s */ int foo() { break; /* expected-error {{'break' statement not in loop or switch statement}} */ diff --git a/test/Parser/builtin_classify_type.c b/test/Parser/builtin_classify_type.c index 500c16adc3..6bed9ec666 100644 --- a/test/Parser/builtin_classify_type.c +++ b/test/Parser/builtin_classify_type.c @@ -1,4 +1,4 @@ -// RUN: clang -parse-ast -verify %s +// RUN: clang -fsyntax-only -verify %s struct foo { int a; }; diff --git a/test/Parser/builtin_types_compatible.c b/test/Parser/builtin_types_compatible.c index 096b400697..b8207841a4 100644 --- a/test/Parser/builtin_types_compatible.c +++ b/test/Parser/builtin_types_compatible.c @@ -1,4 +1,4 @@ -// RUN: clang -parse-ast -verify %s +// RUN: clang -fsyntax-only -verify %s extern int funcInt(int); extern float funcFloat(float); diff --git a/test/Parser/char-literal-printing.c b/test/Parser/char-literal-printing.c index 67196598d1..990b8f76e1 100644 --- a/test/Parser/char-literal-printing.c +++ b/test/Parser/char-literal-printing.c @@ -1,4 +1,4 @@ -// RUN: clang -parse-ast-print %s +// RUN: clang -ast-print %s #include <stddef.h> diff --git a/test/Parser/check_cast.c b/test/Parser/check_cast.c index 8c329fcc99..c69f0f0d03 100644 --- a/test/Parser/check_cast.c +++ b/test/Parser/check_cast.c @@ -1,4 +1,4 @@ -// RUN: clang -parse-ast -verify %s +// RUN: clang -fsyntax-only -verify %s struct foo { int a; }; diff --git a/test/Parser/compound_literal.c b/test/Parser/compound_literal.c index a5383cc40f..c6d665ca43 100644 --- a/test/Parser/compound_literal.c +++ b/test/Parser/compound_literal.c @@ -1,4 +1,4 @@ -// RUN: clang -parse-ast -verify %s +// RUN: clang -fsyntax-only -verify %s int main() { char *s; s = (char []){"whatever"}; diff --git a/test/Parser/cxx-reference.cpp b/test/Parser/cxx-reference.cpp index 955437916e..4f3b58c5d5 100644 --- a/test/Parser/cxx-reference.cpp +++ b/test/Parser/cxx-reference.cpp @@ -1,4 +1,4 @@ -// RUN: clang -parse-ast -verify %s +// RUN: clang -fsyntax-only -verify %s extern char *bork; char *& bar = bork; diff --git a/test/Parser/function-decls.c b/test/Parser/function-decls.c index ef93756cc6..3493baa156 100644 --- a/test/Parser/function-decls.c +++ b/test/Parser/function-decls.c @@ -1,4 +1,4 @@ -/* RUN: clang %s -parse-ast-print +/* RUN: clang %s -ast-print */ void foo() { diff --git a/test/Parser/goto-ident.c b/test/Parser/goto-ident.c index 7231445c79..87d6ea5513 100644 --- a/test/Parser/goto-ident.c +++ b/test/Parser/goto-ident.c @@ -1,4 +1,4 @@ -/* RUN: clang -parse-ast -verify %s +/* RUN: clang -fsyntax-only -verify %s */ void foo() { diff --git a/test/Parser/if-scope-c90.c b/test/Parser/if-scope-c90.c index 1623eb0009..43a3676ca4 100644 --- a/test/Parser/if-scope-c90.c +++ b/test/Parser/if-scope-c90.c @@ -1,4 +1,4 @@ -// RUN: clang -parse-ast -verify --std=c90 %s +// RUN: clang -fsyntax-only -verify --std=c90 %s int f (int z) { diff --git a/test/Parser/if-scope-c99.c b/test/Parser/if-scope-c99.c index c6ce9b6873..41d7ae2e18 100644 --- a/test/Parser/if-scope-c99.c +++ b/test/Parser/if-scope-c99.c @@ -1,4 +1,4 @@ -// RUN: clang -parse-ast -verify --std=c99 %s +// RUN: clang -fsyntax-only -verify --std=c99 %s int f (int z) { diff --git a/test/Parser/implicit-casts.c b/test/Parser/implicit-casts.c index 320370dbfc..a07155eea4 100644 --- a/test/Parser/implicit-casts.c +++ b/test/Parser/implicit-casts.c @@ -1,4 +1,4 @@ -// RUN: clang -parse-ast -verify %s +// RUN: clang -fsyntax-only -verify %s _Complex double X; void test1(int c) { X = 5; diff --git a/test/Parser/ocu_vector_components.c b/test/Parser/ocu_vector_components.c index a47b9a8c96..06084174af 100644 --- a/test/Parser/ocu_vector_components.c +++ b/test/Parser/ocu_vector_components.c @@ -1,4 +1,4 @@ -// RUN: clang -parse-ast -verify %s +// RUN: clang -fsyntax-only -verify %s typedef __attribute__(( ocu_vector_type(2) )) float float2; typedef __attribute__(( ocu_vector_type(3) )) float float3; diff --git a/test/Parser/parmvardecl_conversion.c b/test/Parser/parmvardecl_conversion.c index a3e2499b2e..81acc07b61 100644 --- a/test/Parser/parmvardecl_conversion.c +++ b/test/Parser/parmvardecl_conversion.c @@ -1,4 +1,4 @@ -// RUN: clang -parse-ast -verify %s +// RUN: clang -fsyntax-only -verify %s void f (int p[]) { p++; } 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; } diff --git a/test/Parser/pointer_promotion.c b/test/Parser/pointer_promotion.c index 8d2e6e7a80..c648209bcf 100644 --- a/test/Parser/pointer_promotion.c +++ b/test/Parser/pointer_promotion.c @@ -1,4 +1,4 @@ -// RUN: clang -parse-ast -verify %s +// RUN: clang -fsyntax-only -verify %s int test() { void *vp; diff --git a/test/Parser/recovery-1.c b/test/Parser/recovery-1.c index a098aecfc9..b37c88cba0 100644 --- a/test/Parser/recovery-1.c +++ b/test/Parser/recovery-1.c @@ -1,5 +1,5 @@ // RUN: clang -fsyntax-only -fno-caret-diagnostics -pedantic %s 2>&1 | grep warning | wc -l | grep 1 -// RUN: clang -parse-ast -verify -pedantic %s +// RUN: clang -fsyntax-only -verify -pedantic %s char (((( /* expected-error {{to match this '('}} */ *X x ] )))); /* expected-error {{expected ')'}} */ diff --git a/test/Parser/typeof.c b/test/Parser/typeof.c index e1fd6e4edb..6c4e79cd16 100644 --- a/test/Parser/typeof.c +++ b/test/Parser/typeof.c @@ -1,4 +1,4 @@ -// RUN: clang -parse-ast -verify %s +// RUN: clang -fsyntax-only -verify %s typedef int TInt; |