diff options
author | Teresa Johnson <tejohnson@google.com> | 2024-10-18 10:40:27 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-18 10:40:27 -0700 |
commit | 5995e4b97b593d156b05a729008dd1bc2604d91a (patch) | |
tree | ce522b3be2578c2b0e609f5ac53fcc8363359b60 /llvm/lib/Analysis/ModuleSummaryAnalysis.cpp | |
parent | a01d7df09048e0b0b002c3f8420bcc8c7eab3ea0 (diff) | |
download | llvm-5995e4b97b593d156b05a729008dd1bc2604d91a.zip llvm-5995e4b97b593d156b05a729008dd1bc2604d91a.tar.gz llvm-5995e4b97b593d156b05a729008dd1bc2604d91a.tar.bz2 |
[MemProf] Disable memprof ICP support by default (#112940)
A failure showed up after this was committed, rather than revert simply
disable this new support to simplify investigation and further testing.
Diffstat (limited to 'llvm/lib/Analysis/ModuleSummaryAnalysis.cpp')
-rw-r--r-- | llvm/lib/Analysis/ModuleSummaryAnalysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp b/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp index 0f4e85f..004e8b7 100644 --- a/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp +++ b/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp @@ -82,7 +82,7 @@ static cl::opt<std::string> ModuleSummaryDotFile( cl::desc("File to emit dot graph of new summary into")); static cl::opt<bool> EnableMemProfIndirectCallSupport( - "enable-memprof-indirect-call-support", cl::init(true), cl::Hidden, + "enable-memprof-indirect-call-support", cl::init(false), cl::Hidden, cl::desc( "Enable MemProf support for summarizing and cloning indirect calls")); |