We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 253a4ca + 71958da commit b37c916Copy full SHA for b37c916
compiler/rustc_llvm/llvm-wrapper/PassWrapper.cpp
@@ -667,6 +667,7 @@ LLVMRustOptimize(
667
assert(!PGOUsePath && !PGOSampleUsePath);
668
PGOOpt = PGOOptions(PGOGenPath, "", "",
669
#if LLVM_VERSION_GE(17, 0)
670
+ "",
671
FS,
672
#endif
673
PGOOptions::IRInstr, PGOOptions::NoCSAction,
@@ -675,20 +676,23 @@ LLVMRustOptimize(
675
676
assert(!PGOSampleUsePath);
677
PGOOpt = PGOOptions(PGOUsePath, "", "",
678
679
680
681
682
PGOOptions::IRUse, PGOOptions::NoCSAction,
683
DebugInfoForProfiling);
684
} else if (PGOSampleUsePath) {
685
PGOOpt = PGOOptions(PGOSampleUsePath, "", "",
686
687
688
689
690
PGOOptions::SampleUse, PGOOptions::NoCSAction,
691
692
} else if (DebugInfoForProfiling) {
693
PGOOpt = PGOOptions("", "", "",
694
695
696
697
698
PGOOptions::NoAction, PGOOptions::NoCSAction,
0 commit comments