Fix a problem with the RUN line of one of the PCH tests

llvm-svn: 70227
This commit is contained in:
Douglas Gregor 2009-04-27 18:49:47 +00:00
parent c79f731531
commit 988e627f8c
1 changed files with 1 additions and 1 deletions

View File

@ -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]; }