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.h91 enum SentinelValues { AlwaysInlineCost = INT_MIN, NeverInlineCost = INT_MAX }; enumerator
121 assert(Cost > AlwaysInlineCost && "Cost crosses sentinel value");
128 return InlineCost(AlwaysInlineCost, 0, 0, Reason, CostBenefit);
139 bool isAlways() const { return Cost == AlwaysInlineCost; } in isAlways()