diff options
-rw-r--r-- | clang/test/Sema/decl-in-prototype.c | 2 | ||||
-rw-r--r-- | clang/test/Sema/fn-ptr-as-fn-prototype.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Sema/decl-in-prototype.c b/clang/test/Sema/decl-in-prototype.c index 05b8e0a1c3b..877f8873924 100644 --- a/clang/test/Sema/decl-in-prototype.c +++ b/clang/test/Sema/decl-in-prototype.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1_only -verify %s +// RUN: %clang_cc1 -fsyntax-only -verify %s const int AA = 5; diff --git a/clang/test/Sema/fn-ptr-as-fn-prototype.c b/clang/test/Sema/fn-ptr-as-fn-prototype.c index cf95c977468..4b01b1316e1 100644 --- a/clang/test/Sema/fn-ptr-as-fn-prototype.c +++ b/clang/test/Sema/fn-ptr-as-fn-prototype.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1_only -ast-print %s | FileCheck %s +// RUN: %clang_cc1 -ast-print %s | FileCheck %s // This testcase checks the functionality of // Sema::ActOn{Start,End}FunctionDeclarator, specifically checking that |