diff --git a/llvm/lib/Analysis/InlineOrder.cpp b/llvm/lib/Analysis/InlineOrder.cpp index 1bdb3b98bc870..e6157580e2523 100644 --- a/llvm/lib/Analysis/InlineOrder.cpp +++ b/llvm/lib/Analysis/InlineOrder.cpp @@ -218,10 +218,10 @@ class PriorityInlineOrder : public InlineOrder> { // A call site could become less desirable for inlining because of the size // growth from prior inlining into the callee. This method is used to lazily // update the desirability of a call site if it's decreasing. It is only - // called on pop() or front(), not every time the desirability changes. When - // the desirability of the front call site decreases, an updated one would be - // pushed right back into the heap. For simplicity, those cases where - // the desirability of a call site increases are ignored here. + // called on pop(), not every time the desirability changes. When the + // desirability of the front call site decreases, an updated one would be + // pushed right back into the heap. For simplicity, those cases where the + // desirability of a call site increases are ignored here. void adjust() { std::pop_heap(Heap.begin(), Heap.end(), isLess); while (updateAndCheckDecreased(Heap.back())) { @@ -318,4 +318,4 @@ llvm::getInlineOrder(FunctionAnalysisManager &FAM, const InlineParams &Params, M); } return getDefaultInlineOrder(FAM, Params, MAM, M); -} \ No newline at end of file +}