From 7d3a16f687d57688e0806f12929a195c5114dab3 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Wed, 26 Jan 2011 01:09:59 +0000 Subject: [PATCH] Coding style formatting changes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124260 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/InlineCost.cpp | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/lib/Analysis/InlineCost.cpp b/lib/Analysis/InlineCost.cpp index 780f921fff4..76f13484029 100644 --- a/lib/Analysis/InlineCost.cpp +++ b/lib/Analysis/InlineCost.cpp @@ -343,12 +343,9 @@ int InlineCostAnalyzer::getSpecializationBonus(Function *Callee, if (CalleeFI->Metrics.NumBlocks == 0) CalleeFI->analyzeFunction(Callee); - - for (unsigned i = 0, s = SpecializedArgNos.size(); - i < s; ++i ) - { + for (unsigned i = 0, s = SpecializedArgNos.size(); i < s; ++i ) Bonus += CalleeFI->ArgumentWeights[SpecializedArgNos[i]].ConstantBonus; - } + // Calls usually take a long time, so they make the specialization gain // smaller. Bonus -= CalleeFI->Metrics.NumCalls * InlineConstants::CallPenalty; @@ -514,9 +511,7 @@ InlineCost InlineCostAnalyzer::getSpecializationCost(Function *Callee, // away with the given arguments replaced by constants. for (SmallVectorImpl::iterator an = SpecializedArgNos.begin(), ae = SpecializedArgNos.end(); an != ae; ++an) - { Cost -= CalleeFI->ArgumentWeights[*an].ConstantWeight; - } return llvm::InlineCost::get(Cost); } -- 2.11.0