From: Hiroshi Yamauchi Date: Mon, 3 Aug 2020 18:37:22 +0000 (-0700) Subject: [PGO] Enable the extended value profile buckets for mem op sizes. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3e89cbf38e76d0d0ac75fe77d318a5cfeac512f5;p=platform%2Fupstream%2Fllvm.git [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 --- diff --git a/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp b/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp index 3ab697d..7598889 100644 --- a/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp +++ b/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp @@ -78,7 +78,7 @@ cl::opt 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 {