We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1abaadb commit a60ffeeCopy full SHA for a60ffee
llvm/lib/Analysis/InlineCost.cpp
@@ -675,22 +675,15 @@ class InlineCostCallAnalyzer final : public CallAnalyzer {
675
}
676
677
bool isCostBenefitAnalysisEnabled() {
678
+ if (!InlineEnableCostBenefitAnalysis)
679
+ return false;
680
+
681
if (!PSI || !PSI->hasProfileSummary())
682
return false;
683
684
if (!GetBFI)
685
686
- if (InlineEnableCostBenefitAnalysis.getNumOccurrences()) {
- // Honor the explicit request from the user.
- if (!InlineEnableCostBenefitAnalysis)
687
- return false;
688
- } else {
689
- // Otherwise, require instrumentation profile.
690
- if (!PSI->hasInstrumentationProfile())
691
692
- }
693
-
694
auto *Caller = CandidateCall.getParent()->getParent();
695
if (!Caller->getEntryCount())
696
0 commit comments