Skip to content

Commit b985925

Browse files
committed
minsize
1 parent 9b339a8 commit b985925

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_llvm/llvm-wrapper/PassWrapper.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -712,15 +712,15 @@ extern "C" LLVMRustResult LLVMRustOptimize(
712712
PGOOpt = PGOOptions(PGOGenPath, "", "", "", FS, PGOOptions::IRInstr,
713713
PGOOptions::NoCSAction,
714714
#if LLVM_VERSION_GE(19, 0)
715-
PGOOptions::ColdFuncOpt::OptSize,
715+
PGOOptions::ColdFuncOpt::MinSize,
716716
#endif
717717
DebugInfoForProfiling);
718718
} else if (PGOUsePath) {
719719
assert(!PGOSampleUsePath);
720720
PGOOpt = PGOOptions(PGOUsePath, "", "", "", FS, PGOOptions::IRUse,
721721
PGOOptions::NoCSAction,
722722
#if LLVM_VERSION_GE(19, 0)
723-
PGOOptions::ColdFuncOpt::OptSize,
723+
PGOOptions::ColdFuncOpt::MinSize,
724724
#endif
725725
DebugInfoForProfiling);
726726
} else if (PGOSampleUsePath) {

0 commit comments

Comments
 (0)