diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-12-11 22:31:46 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-12-11 22:31:46 +0000 |
commit | f19b5c0aa0242663a273e52d7079be35cf7e6c91 (patch) | |
tree | 8718708d73c7103c51784f671dae452488ab76be | |
parent | 299c22f806d0127b58f5cc53ce4ac14ccb21b209 (diff) |
Try to fix Win32 failures
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@169923 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/PCH/modified-header-crash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/PCH/modified-header-crash.c b/test/PCH/modified-header-crash.c index c74ce2239c..a5ae402353 100644 --- a/test/PCH/modified-header-crash.c +++ b/test/PCH/modified-header-crash.c @@ -2,7 +2,7 @@ // RUN: cp %S/modified-header-crash.h %t.h // RUN: %clang_cc1 -DCAKE -x c-header %t.h -emit-pch -o %t -// RUN: echo >> %t.h +// RUN: echo 'int foobar;' >> %t.h // RUN: not %clang_cc1 %s -include-pch %t -fsyntax-only void f(void) { |