diff options
Diffstat (limited to 'clang/test/PCH/struct.c')
-rw-r--r-- | clang/test/PCH/struct.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/PCH/struct.c b/clang/test/PCH/struct.c index 6595a2fbdcc..3e9d1883323 100644 --- a/clang/test/PCH/struct.c +++ b/clang/test/PCH/struct.c @@ -1,9 +1,9 @@ // Test this without pch. -// RUN: clang-cc -include %S/struct.h -fsyntax-only -verify %s +// RUN: %clang_cc1 -include %S/struct.h -fsyntax-only -verify %s // Test with pch. -// RUN: clang-cc -emit-pch -o %t %S/struct.h -// RUN: clang-cc -include-pch %t -fsyntax-only -verify %s +// RUN: %clang_cc1 -emit-pch -o %t %S/struct.h +// RUN: %clang_cc1 -include-pch %t -fsyntax-only -verify %s struct Point *p1; |