diff options
author | Chris Lattner <sabre@nondot.org> | 2009-02-04 19:45:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-02-04 19:45:07 +0000 |
commit | 022923a22a616a97685af71862a7a9833af23b65 (patch) | |
tree | 94c9354ff645272c3ef7806c58955f13881cca6d /clang/test/Preprocessor/include-directive1.c | |
parent | 7ead0396f6fba6199ddebc1993a5e7d26d33181d (diff) | |
download | bcm5719-llvm-022923a22a616a97685af71862a7a9833af23b65.tar.gz bcm5719-llvm-022923a22a616a97685af71862a7a9833af23b65.zip |
Fix PR3464 by searching for headers from the predefines
buffer as if the #include happened from the main file.
llvm-svn: 63764
Diffstat (limited to 'clang/test/Preprocessor/include-directive1.c')
-rw-r--r-- | clang/test/Preprocessor/include-directive1.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/clang/test/Preprocessor/include-directive1.c b/clang/test/Preprocessor/include-directive1.c index 632760b7cd3..3e449c52689 100644 --- a/clang/test/Preprocessor/include-directive1.c +++ b/clang/test/Preprocessor/include-directive1.c @@ -1,4 +1,3 @@ - // RUN: clang -E %s -fno-caret-diagnostics 2>&1 >/dev/null | grep 'file successfully included' | count 3 // XX expands to nothing. @@ -13,7 +12,3 @@ // normal include #include "file_to_include.h" -// Expand and paste angled strings. -# define HEADER <file_to_include.h> -# include HEADER - |