Apparently the check for direct calls is unnecessary.

llvm-svn: 130716
This commit is contained in:
Eric Christopher 2011-05-02 20:16:33 +00:00
parent 6297a715dc
commit 39b56b4b9f
1 changed files with 2 additions and 2 deletions

View File

@ -1839,9 +1839,9 @@ bool ARMFastISel::SelectCall(const Instruction *I) {
// Can't handle inline asm or worry about intrinsics yet.
if (isa<InlineAsm>(Callee) || isa<IntrinsicInst>(CI)) return false;
// Only handle global variable Callees that are direct calls.
// Only handle global variable Callees.
const GlobalValue *GV = dyn_cast<GlobalValue>(Callee);
if (!GV || Subtarget->GVIsIndirectSymbol(GV, TM.getRelocationModel()))
if (!GV)
return false;
// Check the calling convention.