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

Summary: Similar to D81020. Follow up D78949.

Reviewers: davidxl

Subscribers: hiraditya, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D82053
This commit is contained in:
Hiroshi Yamauchi 2020-06-17 13:11:45 -07:00
parent ef597eda8e
commit 9e1decf743
1 changed files with 1 additions and 1 deletions

View File

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