diff options
author | Zequan Wu <zequanwu@google.com> | 2020-07-08 12:30:28 -0700 |
---|---|---|
committer | Zequan Wu <zequanwu@google.com> | 2020-07-10 09:04:51 -0700 |
commit | 1fbb719470c6e0395abaab66c68fae3b8ae405d0 (patch) | |
tree | a34d4ab0f8ed6fed55c5792e5a0f368a3f914309 /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | 1d542f0ca83fa1411d6501a8d088450d83abd5b8 (diff) | |
download | llvm-1fbb719470c6e0395abaab66c68fae3b8ae405d0.zip llvm-1fbb719470c6e0395abaab66c68fae3b8ae405d0.tar.gz llvm-1fbb719470c6e0395abaab66c68fae3b8ae405d0.tar.bz2 |
[LPM] Port CGProfilePass from NPM to LPM
Reviewers: hans, chandlerc!, asbirlea, nikic
Reviewed By: hans, nikic
Subscribers: steven_wu, dexonsmith, nikic, echristo, void, zhizhouy, cfe-commits, aeubanks, MaskRay, jvesely, nhaehnle, hiraditya, kerbowa, llvm-commits
Tags: #llvm, #clang
Differential Revision: https://reviews.llvm.org/D83013
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index e24de29..863c6b3 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -860,7 +860,6 @@ static bool ParseCodeGenArgs(CodeGenOptions &Opts, ArgList &Args, InputKind IK, Opts.RerollLoops = Args.hasArg(OPT_freroll_loops); Opts.DisableIntegratedAS = Args.hasArg(OPT_fno_integrated_as); - Opts.CallGraphProfile = !Opts.DisableIntegratedAS; Opts.Autolink = !Args.hasArg(OPT_fno_autolink); Opts.SampleProfileFile = std::string(Args.getLastArgValue(OPT_fprofile_sample_use_EQ)); |