diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-09-05 03:23:51 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-09-05 03:23:51 +0000 |
commit | 0335024c4abe64ca5c416b3ae05c0b791ece57f6 (patch) | |
tree | 140725dda374b113569fbdf1545ac48bb68a4680 | |
parent | 98e0e535bd639918f3f4ab1dd72104c4b9c49a03 (diff) | |
download | bcm5719-llvm-0335024c4abe64ca5c416b3ae05c0b791ece57f6.tar.gz bcm5719-llvm-0335024c4abe64ca5c416b3ae05c0b791ece57f6.zip |
Test case for previous commit (Workaround gcc bug causing crash on our
preprocessed outputs)
llvm-svn: 55826
-rw-r--r-- | clang/test/Lexer/preprocess-compat.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/test/Lexer/preprocess-compat.c b/clang/test/Lexer/preprocess-compat.c new file mode 100644 index 00000000000..e895975477f --- /dev/null +++ b/clang/test/Lexer/preprocess-compat.c @@ -0,0 +1,3 @@ +// RUN: clang -E -x c -o %t.i %s +// RUN: gcc -fsyntax-only %t.i + |