diff options
author | Erich Keane <erich.keane@intel.com> | 2017-12-11 18:14:51 +0000 |
---|---|---|
committer | Erich Keane <erich.keane@intel.com> | 2017-12-11 18:14:51 +0000 |
commit | d2dd52d1df034f6060a06604d2be1743285cfcae (patch) | |
tree | ce99442b5948063e1b36a346c0180faaac3810cf /lib/Frontend/CompilerInvocation.cpp | |
parent | 84bf555dbe0c7836c8f67eea29a7cc9390b897bf (diff) | |
download | clang-d2dd52d1df034f6060a06604d2be1743285cfcae.tar.gz |
Revert 320391: Certain targets are failing, pulling back to diagnose.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@320398 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | lib/Frontend/CompilerInvocation.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/Frontend/CompilerInvocation.cpp b/lib/Frontend/CompilerInvocation.cpp index 60802da921..2ebdc2a62a 100644 --- a/lib/Frontend/CompilerInvocation.cpp +++ b/lib/Frontend/CompilerInvocation.cpp @@ -2611,10 +2611,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(';'); |