]> granicus.if.org Git - llvm/commitdiff
Fix typo
authorXinliang David Li <davidxl@google.com>
Fri, 4 Nov 2016 03:00:52 +0000 (03:00 +0000)
committerXinliang David Li <davidxl@google.com>
Fri, 4 Nov 2016 03:00:52 +0000 (03:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@285978 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/Inliner.cpp

index 5e05398d382fbbad6d7644e92e473705b40fcdd9..097d1c3039ed9d52814ae02b5446bdd9ee95334c 100644 (file)
@@ -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) {