Skip to content

Commit a60ffee

Browse files
committed
Revert "[InlineCost] Enable the cost benefit analysis on FDO"
This reverts commit ef69aa9. Makes clang assert in PGO builds, see repro tgz in https://bugs.chromium.org/p/chromium/issues/detail?id=1192783#c6
1 parent 1abaadb commit a60ffee

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

llvm/lib/Analysis/InlineCost.cpp

+3-10
Original file line numberDiff line numberDiff line change
@@ -675,22 +675,15 @@ class InlineCostCallAnalyzer final : public CallAnalyzer {
675675
}
676676

677677
bool isCostBenefitAnalysisEnabled() {
678+
if (!InlineEnableCostBenefitAnalysis)
679+
return false;
680+
678681
if (!PSI || !PSI->hasProfileSummary())
679682
return false;
680683

681684
if (!GetBFI)
682685
return false;
683686

684-
if (InlineEnableCostBenefitAnalysis.getNumOccurrences()) {
685-
// Honor the explicit request from the user.
686-
if (!InlineEnableCostBenefitAnalysis)
687-
return false;
688-
} else {
689-
// Otherwise, require instrumentation profile.
690-
if (!PSI->hasInstrumentationProfile())
691-
return false;
692-
}
693-
694687
auto *Caller = CandidateCall.getParent()->getParent();
695688
if (!Caller->getEntryCount())
696689
return false;

0 commit comments

Comments
 (0)