diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2008-06-10 05:14:31 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2008-06-10 05:14:31 +0000 |
commit | 4f64def9ee128ee153b01f915d2034407114e0a2 (patch) | |
tree | 270918f4f768d77db00c869c61ca4675e04eb25d /clang/test/Lexer/digraph.cpp | |
parent | d5b11a3adc75e51c477b9399861bb4d196f1ffca (diff) | |
download | bcm5719-llvm-4f64def9ee128ee153b01f915d2034407114e0a2.tar.gz bcm5719-llvm-4f64def9ee128ee153b01f915d2034407114e0a2.zip |
Make this test C instead of C++; making it C++ causes a failure on Linux
because clang can't parse stdio.h in C++ mode yet.
llvm-svn: 52168
Diffstat (limited to 'clang/test/Lexer/digraph.cpp')
-rw-r--r-- | clang/test/Lexer/digraph.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/clang/test/Lexer/digraph.cpp b/clang/test/Lexer/digraph.cpp deleted file mode 100644 index 07c085a1d55..00000000000 --- a/clang/test/Lexer/digraph.cpp +++ /dev/null @@ -1,15 +0,0 @@ -// RUN: clang -fsyntax-only %s - -%:include <stdio.h> - - %:ifndef BUFSIZE - %:define BUFSIZE 512 - %:endif - - void copy(char d<::>, const char s<::>, int len) - <% - while (len-- >= 0) - <% - d<:len:> = s<:len:>; - %> - %> |