[llvm-commits] [llvm] r48573 - /llvm/trunk/lib/Transforms/Utils/InlineCost.cpp
Evan Cheng
evan.cheng at apple.com
Wed Mar 19 17:20:25 PDT 2008
Author: evancheng
Date: Wed Mar 19 19:20:23 2008
New Revision: 48573
URL: http://llvm.org/viewvc/llvm-project?rev=48573&view=rev
Log:
80 col violation.
Modified:
llvm/trunk/lib/Transforms/Utils/InlineCost.cpp
Modified: llvm/trunk/lib/Transforms/Utils/InlineCost.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Utils/InlineCost.cpp?rev=48573&r1=48572&r2=48573&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Utils/InlineCost.cpp (original)
+++ llvm/trunk/lib/Transforms/Utils/InlineCost.cpp Wed Mar 19 19:20:23 2008
@@ -141,7 +141,8 @@
// 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();
More information about the llvm-commits
mailing list