From: Douglas Gregor Date: Mon, 27 Apr 2009 18:49:47 +0000 (+0000) Subject: Fix a problem with the RUN line of one of the PCH tests X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce5148894cbf4a465e2bc1158e8a4f8a729f6632;p=clang 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 --- 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]; }