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
commit71d83741d21076f360ba1942a5a66e16c3a7c7d3 (patch)
treed64a9740b0e242362a2ababfd0293b1dcf0b1572
parentdff1dcac6cb0162fffa61b3d0d3281a55b74d9f9 (diff)
downloadexternal_llvm-71d83741d21076f360ba1942a5a66e16c3a7c7d3.zip
external_llvm-71d83741d21076f360ba1942a5a66e16c3a7c7d3.tar.gz
external_llvm-71d83741d21076f360ba1942a5a66e16c3a7c7d3.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();