From: Xinliang David Li Date: Fri, 4 Nov 2016 03:00:52 +0000 (+0000) Subject: Fix typo X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=af0210fd51a8c4991cb04f2232beeec9e23a5620;p=llvm Fix typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@285978 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/IPO/Inliner.cpp b/lib/Transforms/IPO/Inliner.cpp index 5e05398d382..097d1c3039e 100644 --- a/lib/Transforms/IPO/Inliner.cpp +++ b/lib/Transforms/IPO/Inliner.cpp @@ -310,7 +310,7 @@ shouldBeDeferred(Function *Caller, CallSite CS, InlineCost IC, if (IC2.isAlways()) continue; - // See if inlining or original callsite would erase the cost delta of + // See if inlining of the original callsite would erase the cost delta of // this callsite. We subtract off the penalty for the call instruction, // which we would be deleting. if (IC2.getCostDelta() <= CandidateCost) {