1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

[PartialInlining] Type. NFC.

llvm-svn: 311699
This commit is contained in:
Chad Rosier 2017-08-24 20:29:02 +00:00
parent 7d9fe6e6ce
commit f3b99e6829

View File

@ -845,7 +845,7 @@ bool PartialInlinerImpl::tryPartialInline(FunctionCloner &Cloner) {
// 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);