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-directive3.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-directive3.c')
-rw-r--r-- | clang/test/Preprocessor/include-directive3.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/test/Preprocessor/include-directive3.c b/clang/test/Preprocessor/include-directive3.c new file mode 100644 index 00000000000..9e22d5d4920 --- /dev/null +++ b/clang/test/Preprocessor/include-directive3.c @@ -0,0 +1,3 @@ +// RUN: clang -include file_to_include.h -E %s -fno-caret-diagnostics 2>&1 >/dev/null | grep 'file successfully included' | count 1 +// PR3464 + |