aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/InlineSimple.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Transforms/IPO/InlineSimple.cpp')
-rw-r--r--lib/Transforms/IPO/InlineSimple.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Transforms/IPO/InlineSimple.cpp b/lib/Transforms/IPO/InlineSimple.cpp
index 9ca23f7448..51cde2e799 100644
--- a/lib/Transforms/IPO/InlineSimple.cpp
+++ b/lib/Transforms/IPO/InlineSimple.cpp
@@ -69,7 +69,7 @@ bool InlineMethod(BasicBlock::iterator CIIt) {
assert((*CIIt)->getParent()->getParent() && "Instruction not in method!");
CallInst *CI = cast<CallInst>(*CIIt);
- const Method *CalledMeth = CI->getCalledMethod();
+ const Function *CalledMeth = CI->getCalledFunction();
if (CalledMeth == 0 || // Can't inline external method or indirect call!
CalledMeth->isExternal()) return false;
@@ -242,8 +242,8 @@ static inline bool DoMethodInlining(BasicBlock *BB) {
for (BasicBlock::iterator I = BB->begin(); I != BB->end(); ++I) {
if (CallInst *CI = dyn_cast<CallInst>(*I)) {
// Check to see if we should inline this method
- Method *M = CI->getCalledMethod();
- if (M && ShouldInlineMethod(CI, M))
+ Method *F = CI->getCalledFunction();
+ if (F && ShouldInlineMethod(CI, F))
return InlineMethod(I);
}
}