aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-03-20 00:20:23 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-03-20 00:20:23 +0000
commitaa732210852ef98d088873b98813b7d427f219d4 (patch)
treed64a9740b0e242362a2ababfd0293b1dcf0b1572
parente606dc922894746116f03029bc6452f211e2e41a (diff)
downloadexternal_llvm-aa732210852ef98d088873b98813b7d427f219d4.zip
external_llvm-aa732210852ef98d088873b98813b7d427f219d4.tar.gz
external_llvm-aa732210852ef98d088873b98813b7d427f219d4.tar.bz2
80 col violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48573 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Transforms/Utils/InlineCost.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/InlineCost.cpp b/lib/Transforms/Utils/InlineCost.cpp
index 835617c..1e1d1e4 100644
--- a/lib/Transforms/Utils/InlineCost.cpp
+++ b/lib/Transforms/Utils/InlineCost.cpp
@@ -141,7 +141,8 @@ void InlineCostAnalyzer::FunctionInfo::analyzeFunction(Function *F) {
// getInlineCost - The heuristic used to determine if we should inline the
// function call or not.
//
-int InlineCostAnalyzer::getInlineCost(CallSite CS, SmallPtrSet<const Function *, 16> &NeverInline) {
+int InlineCostAnalyzer::getInlineCost(CallSite CS,
+ SmallPtrSet<const Function *, 16> &NeverInline) {
Instruction *TheCall = CS.getInstruction();
Function *Callee = CS.getCalledFunction();
const Function *Caller = TheCall->getParent()->getParent();