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 | 16ba5ff7129a03b661b7fa02d79286026f7ddf6c (patch) | |
tree | 0b9b8d531de8a318d3e23814ab99c13c2bb26465 | |
parent | 822627f8c5f096260f797da221eacfef44bd63a9 (diff) | |
download | bcm5719-llvm-16ba5ff7129a03b661b7fa02d79286026f7ddf6c.tar.gz bcm5719-llvm-16ba5ff7129a03b661b7fa02d79286026f7ddf6c.zip |
Try to fix Win32 failures
llvm-svn: 169923
-rw-r--r-- | clang/test/PCH/modified-header-crash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/PCH/modified-header-crash.c b/clang/test/PCH/modified-header-crash.c index c74ce2239c2..a5ae4023536 100644 --- a/clang/test/PCH/modified-header-crash.c +++ b/clang/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) { |