[PGO][PGSO] Enable non-cold code size opts under non-partial-profile sample PGO.

Summary: Following up D78949.

Reviewers: davidxl

Subscribers: hiraditya, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D81020
This commit is contained in:
Hiroshi Yamauchi 2020-06-02 10:50:59 -07:00
parent ef5850a2de
commit b5632f4083
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ cl::opt<bool> PGSOColdCodeOnlyForInstrPGO(
"to cold code under instrumentation PGO."));
cl::opt<bool> PGSOColdCodeOnlyForSamplePGO(
"pgso-cold-code-only-for-sample-pgo", cl::Hidden, cl::init(true),
"pgso-cold-code-only-for-sample-pgo", cl::Hidden, cl::init(false),
cl::desc("Apply the profile guided size optimizations only "
"to cold code under sample PGO."));