[llvm] r311699 - [PartialInlining] Type. NFC.

Chad Rosier via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 24 13:29:02 PDT 2017


Author: mcrosier
Date: Thu Aug 24 13:29:02 2017
New Revision: 311699

URL: http://llvm.org/viewvc/llvm-project?rev=311699&view=rev
Log:
[PartialInlining] Type. NFC.

Modified:
    llvm/trunk/lib/Transforms/IPO/PartialInlining.cpp

Modified: llvm/trunk/lib/Transforms/IPO/PartialInlining.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/IPO/PartialInlining.cpp?rev=311699&r1=311698&r2=311699&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/IPO/PartialInlining.cpp (original)
+++ llvm/trunk/lib/Transforms/IPO/PartialInlining.cpp Thu Aug 24 13:29:02 2017
@@ -845,7 +845,7 @@ bool PartialInlinerImpl::tryPartialInlin
 
   // The call sequence to the outlined function is larger than the original
   // outlined region size, it does not increase the chances of inlining
-  // the function with outlining (The inliner usies the size increase to
+  // the function with outlining (The inliner uses the size increase to
   // model the cost of inlining a callee).
   if (!SkipCostAnalysis && Cloner.OutlinedRegionCost < SizeCost) {
     OptimizationRemarkEmitter ORE(Cloner.OrigFunc);




More information about the llvm-commits mailing list