diff options
author | Erich Keane <erich.keane@intel.com> | 2017-11-20 21:46:29 +0000 |
---|---|---|
committer | Erich Keane <erich.keane@intel.com> | 2017-11-20 21:46:29 +0000 |
commit | 523edb0a3abebc8c1f00b2b8413650d47960d4dc (patch) | |
tree | a11efcb73c9d1f43030664b9779d9c98efeb1dc4 /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | 8b6ef88e7eb618dea0160eaddecf901eb28bc2e1 (diff) | |
download | bcm5719-llvm-523edb0a3abebc8c1f00b2b8413650d47960d4dc.tar.gz bcm5719-llvm-523edb0a3abebc8c1f00b2b8413650d47960d4dc.zip |
Revert r318669/318694
Broke some libclang tests, so reverting for now.
llvm-svn: 318698
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index 748c7ffbcdf..384124bee2b 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -2594,10 +2594,6 @@ static void ParsePreprocessorArgs(PreprocessorOptions &Opts, ArgList &Args, for (const Arg *A : Args.filtered(OPT_chain_include)) Opts.ChainedIncludes.emplace_back(A->getValue()); - // Add the ordered list of -fsystem-include-if-exists. - for (const Arg *A : Args.filtered(OPT_fsystem_include_if_exists)) - Opts.FSystemIncludeIfExists.emplace_back(A->getValue()); - for (const Arg *A : Args.filtered(OPT_remap_file)) { std::pair<StringRef, StringRef> Split = StringRef(A->getValue()).split(';'); |