[llvm] 9f5d8e8 - [PGO] Enable the extended value profile buckets for mem op sizes.
Hiroshi Yamauchi via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 20 12:05:20 PDT 2020
Author: Hiroshi Yamauchi
Date: 2020-07-20T12:05:09-07:00
New Revision: 9f5d8e8a729dddbb7c2e020df1507273d1c98fcb
URL: https://github.com/llvm/llvm-project/commit/9f5d8e8a729dddbb7c2e020df1507273d1c98fcb
DIFF: https://github.com/llvm/llvm-project/commit/9f5d8e8a729dddbb7c2e020df1507273d1c98fcb.diff
LOG: [PGO] Enable the extended value profile buckets for mem op sizes.
Following up D81682 and enable the new, extended value profile buckets for mem
op sizes.
Differential Revision: https://reviews.llvm.org/D83903
Added:
Modified:
llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp b/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
index 0a3519502994..c2e4e932e77b 100644
--- a/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
+++ b/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
@@ -78,7 +78,7 @@ cl::opt<bool> UseOldMemOpValueProf(
"use-old-memop-value-prof",
cl::desc("Use the old memop value profiling buckets. This is "
"transitional and to be removed after switching. "),
- cl::init(true));
+ cl::init(false));
namespace {
More information about the llvm-commits
mailing list