Home
last modified time | relevance | path

Searched refs:AlwaysInlineCost (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DInlineCost.h92 enum SentinelValues { AlwaysInlineCost = INT_MIN, NeverInlineCost = INT_MAX }; enumerator
122 assert(Cost > AlwaysInlineCost && "Cost crosses sentinel value");
129 return InlineCost(AlwaysInlineCost, 0, 0, Reason, CostBenefit);
140 bool isAlways() const { return Cost == AlwaysInlineCost; } in isAlways()