diff options
author | Eric Christopher <echristo@apple.com> | 2011-05-02 20:16:33 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-05-02 20:16:33 +0000 |
commit | 52f6c03a450aeed93b97cad9e5373029ebcad5e7 (patch) | |
tree | efcdba3f98391e33eb42d283c7f3cd13c1b1b09a /lib | |
parent | e2f669fb3fa7a6bee4196999b119a98f31c072a3 (diff) |
Apparently the check for direct calls is unnecessary.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130716 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/ARM/ARMFastISel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMFastISel.cpp b/lib/Target/ARM/ARMFastISel.cpp index 3baf274b76..f5c4605e3e 100644 --- a/lib/Target/ARM/ARMFastISel.cpp +++ b/lib/Target/ARM/ARMFastISel.cpp @@ -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. |