aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Frontend/CompilerInvocation.cpp
diff options
context:
space:
mode:
authorMitch Phillips <31459023+hctim@users.noreply.github.com>2019-12-18 09:05:09 -0800
committerMitch Phillips <31459023+hctim@users.noreply.github.com>2019-12-18 09:05:09 -0800
commitb19d87b16f81e7c0a22a0a103c867c1b844eb8bc (patch)
tree63fc875fd18aacfa0f694567ab2a8a77a17c413a /clang/lib/Frontend/CompilerInvocation.cpp
parent2f4c3c565a34b2c30fb883c85acbf4114b455c26 (diff)
downloadllvm-b19d87b16f81e7c0a22a0a103c867c1b844eb8bc.zip
llvm-b19d87b16f81e7c0a22a0a103c867c1b844eb8bc.tar.gz
llvm-b19d87b16f81e7c0a22a0a103c867c1b844eb8bc.tar.bz2
Revert "Add an -fno-temp-file flag for compilation"
This reverts commit d129aa1d5369781deff6c6b854cb612e160d3fb2. This broke the MSan buildbots. More information available in the original PR: https://reviews.llvm.org/D70615
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r--clang/lib/Frontend/CompilerInvocation.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp
index d68244d..8631536e 100644
--- a/clang/lib/Frontend/CompilerInvocation.cpp
+++ b/clang/lib/Frontend/CompilerInvocation.cpp
@@ -1887,7 +1887,6 @@ static InputKind ParseFrontendArgs(FrontendOptions &Opts, ArgList &Args,
Opts.ModulesEmbedFiles = Args.getAllArgValues(OPT_fmodules_embed_file_EQ);
Opts.ModulesEmbedAllFiles = Args.hasArg(OPT_fmodules_embed_all_files);
Opts.IncludeTimestamps = !Args.hasArg(OPT_fno_pch_timestamp);
- Opts.UseTemporary = !Args.hasArg(OPT_fno_temp_file);
Opts.CodeCompleteOpts.IncludeMacros
= Args.hasArg(OPT_code_completion_macros);