aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp
diff options
context:
space:
mode:
authorTeresa Johnson <tejohnson@google.com>2024-10-18 10:40:27 -0700
committerGitHub <noreply@github.com>2024-10-18 10:40:27 -0700
commit5995e4b97b593d156b05a729008dd1bc2604d91a (patch)
treece522b3be2578c2b0e609f5ac53fcc8363359b60 /llvm/lib/Analysis/ModuleSummaryAnalysis.cpp
parenta01d7df09048e0b0b002c3f8420bcc8c7eab3ea0 (diff)
downloadllvm-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.cpp2
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"));