diff options
Diffstat (limited to 'clang/test/PCH/stmts.c')
-rw-r--r-- | clang/test/PCH/stmts.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/PCH/stmts.c b/clang/test/PCH/stmts.c index c8fbc83a0fa..f376a1dd37f 100644 --- a/clang/test/PCH/stmts.c +++ b/clang/test/PCH/stmts.c @@ -1,9 +1,9 @@ // Test this without pch. -// RUN: clang-cc -fblocks -include %S/stmts.h -fsyntax-only -ast-print -o - %s +// RUN: clang-cc -include %S/stmts.h -fsyntax-only -ast-print -o - %s // Test with pch. -// RUN: clang-cc -emit-pch -fblocks -o %t %S/stmts.h && -// RUN: clang-cc -fblocks -include-pch %t -fsyntax-only -ast-print -o - %s +// RUN: clang-cc -emit-pch -o %t %S/stmts.h && +// RUN: clang-cc -include-pch %t -fsyntax-only -ast-print -o - %s void g0(void) { f0(5); } int g1(int x) { return f1(x); } |