diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-04-27 18:49:47 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-04-27 18:49:47 +0000 |
commit | ce5148894cbf4a465e2bc1158e8a4f8a729f6632 (patch) | |
tree | a4718aa003bd18a0ae6e2c18cd29d8b596a8ff6e | |
parent | 22afc65ce9cb90cbc9f8dcfb3ea44acbebed67a6 (diff) |
Fix a problem with the RUN line of one of the PCH tests
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70227 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/PCH/va_arg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/PCH/va_arg.c b/test/PCH/va_arg.c index de0bd5f73d..75cee06d65 100644 --- a/test/PCH/va_arg.c +++ b/test/PCH/va_arg.c @@ -2,7 +2,7 @@ // RUN: clang-cc -triple=x86_64-unknown-freebsd7.0 -include %S/va_arg.h %s -emit-llvm -o - && // Test with pch. -// RUN: clang-cc -triple=x86_64-unknown-freebsd7.0 -o %t %S/va_arg.h && +// RUN: clang-cc -triple=x86_64-unknown-freebsd7.0 -emit-pch -o %t %S/va_arg.h && // RUN: clang-cc -triple=x86_64-unknown-freebsd7.0 -include-pch %t %s -emit-llvm -o - char *g0(char** argv, int argc) { return argv[argc]; } |