diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-03-20 00:20:23 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-03-20 00:20:23 +0000 |
commit | 5daf090a1a50088b27b034525f83da7d185b454f (patch) | |
tree | 9938e8016fe39a358a81eee2e06f0bb752589ef8 /llvm/lib/Transforms | |
parent | bc249625668c52592e7d9946748dd8bdbb3a5700 (diff) | |
download | bcm5719-llvm-5daf090a1a50088b27b034525f83da7d185b454f.tar.gz bcm5719-llvm-5daf090a1a50088b27b034525f83da7d185b454f.zip |
80 col violation.
llvm-svn: 48573
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Utils/InlineCost.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/InlineCost.cpp b/llvm/lib/Transforms/Utils/InlineCost.cpp index 835617c4a4f..1e1d1e410f3 100644 --- a/llvm/lib/Transforms/Utils/InlineCost.cpp +++ b/llvm/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(); |