diff options
Diffstat (limited to 'clang/test/PCH/enum.c')
-rw-r--r-- | clang/test/PCH/enum.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/PCH/enum.c b/clang/test/PCH/enum.c index 92869b6bc83..f3e8a09d93e 100644 --- a/clang/test/PCH/enum.c +++ b/clang/test/PCH/enum.c @@ -1,9 +1,9 @@ // Test this without pch. -// RUN: clang-cc -triple=i686-apple-darwin9 -include %S/enum.h -fsyntax-only -verify %s +// RUN: clang-cc -include %S/enum.h -fsyntax-only -verify %s // Test with pch. -// RUN: clang-cc -emit-pch -triple=i686-apple-darwin9 -o %t %S/enum.h && -// RUN: clang-cc -triple=i686-apple-darwin9 -include-pch %t -fsyntax-only -verify %s +// RUN: clang-cc -emit-pch -o %t %S/enum.h && +// RUN: clang-cc -include-pch %t -fsyntax-only -verify %s int i = Red; |