diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-06-13 20:27:03 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-06-13 20:27:03 +0000 |
commit | 8acadcb84bcb70e1eea08cf261a2f4f5973578c3 (patch) | |
tree | 84f91fcb648badaf8014efa8581c738d40368d06 /clang/test/Frontend/Inputs/SystemHeaderPrefix/src | |
parent | dc3559106b15c8b44355560ec5203f0a1b441d69 (diff) | |
download | bcm5719-llvm-8acadcb84bcb70e1eea08cf261a2f4f5973578c3.tar.gz bcm5719-llvm-8acadcb84bcb70e1eea08cf261a2f4f5973578c3.zip |
Add -isystem-prefix and -ino-system-prefix arguments, which can be used to
override whether headers are system headers by checking for prefixes of the
header name specified in the #include directive.
This allows warnings to be disabled for third-party code which is found in
specific subdirectories of include paths.
llvm-svn: 158418
Diffstat (limited to 'clang/test/Frontend/Inputs/SystemHeaderPrefix/src')
-rw-r--r-- | clang/test/Frontend/Inputs/SystemHeaderPrefix/src/all.h | 6 | ||||
-rw-r--r-- | clang/test/Frontend/Inputs/SystemHeaderPrefix/src/warn.h | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/clang/test/Frontend/Inputs/SystemHeaderPrefix/src/all.h b/clang/test/Frontend/Inputs/SystemHeaderPrefix/src/all.h new file mode 100644 index 00000000000..ace9699f85b --- /dev/null +++ b/clang/test/Frontend/Inputs/SystemHeaderPrefix/src/all.h @@ -0,0 +1,6 @@ +#include "libs/boost/all.h" +#include "libs/mylib/all.h" + +#include "libs/boost/warn.h" +#include "libs/mylib/warn.h" +#include "src/warn.h" diff --git a/clang/test/Frontend/Inputs/SystemHeaderPrefix/src/warn.h b/clang/test/Frontend/Inputs/SystemHeaderPrefix/src/warn.h new file mode 100644 index 00000000000..91e2591855e --- /dev/null +++ b/clang/test/Frontend/Inputs/SystemHeaderPrefix/src/warn.h @@ -0,0 +1,2 @@ +#if SRC +#endif |