diff --git a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp --- a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp +++ b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp @@ -5008,7 +5008,8 @@ if (auto *G = dyn_cast(Callee)) GV = G->getGlobal(); bool Local = TM.shouldAssumeDSOLocal(*Mod, GV); - bool UsePlt = !Local && Subtarget.isTargetELF() && !isPPC64; + bool UsePlt = !Local && Subtarget.isTargetELF() && !isPPC64 && + TM.getRelocationModel() == Reloc::PIC_; // If the callee is a GlobalAddress/ExternalSymbol node (quite common, // every direct call is) turn it into a TargetGlobalAddress / diff --git a/llvm/test/CodeGen/PowerPC/2008-10-28-f128-i32.ll b/llvm/test/CodeGen/PowerPC/2008-10-28-f128-i32.ll --- a/llvm/test/CodeGen/PowerPC/2008-10-28-f128-i32.ll +++ b/llvm/test/CodeGen/PowerPC/2008-10-28-f128-i32.ll @@ -62,7 +62,7 @@ ; CHECK-NEXT: stw 3, 312(1) ; CHECK-NEXT: lfd 30, 312(1) ; CHECK-NEXT: fmr 2, 30 -; CHECK-NEXT: bl __gcc_qmul@PLT +; CHECK-NEXT: bl __gcc_qmul ; CHECK-NEXT: lis 3, 16864 ; CHECK-NEXT: stfd 1, 280(1) ; CHECK-NEXT: stw 3, 368(1) @@ -84,7 +84,7 @@ ; CHECK-NEXT: lwz 3, 288(1) ; CHECK-NEXT: stw 3, 344(1) ; CHECK-NEXT: lfd 2, 344(1) -; CHECK-NEXT: bl __gcc_qsub@PLT +; CHECK-NEXT: bl __gcc_qsub ; CHECK-NEXT: mffs 0 ; CHECK-NEXT: mtfsb1 31 ; CHECK-NEXT: lis 3, .LCPI0_1@ha @@ -117,7 +117,7 @@ ; CHECK-NEXT: .LBB0_5: # %bb1 ; CHECK-NEXT: li 4, 0 ; CHECK-NEXT: mr 3, 30 -; CHECK-NEXT: bl __floatditf@PLT +; CHECK-NEXT: bl __floatditf ; CHECK-NEXT: lis 3, 17392 ; CHECK-NEXT: stfd 1, 208(1) ; CHECK-NEXT: stw 3, 240(1) @@ -140,7 +140,7 @@ ; CHECK-NEXT: lwz 3, 200(1) ; CHECK-NEXT: stw 3, 216(1) ; CHECK-NEXT: lfd 2, 216(1) -; CHECK-NEXT: bl __gcc_qadd@PLT +; CHECK-NEXT: bl __gcc_qadd ; CHECK-NEXT: blt 2, .LBB0_7 ; CHECK-NEXT: # %bb.6: # %bb1 ; CHECK-NEXT: fmr 2, 28 @@ -163,7 +163,7 @@ ; CHECK-NEXT: lwz 3, 192(1) ; CHECK-NEXT: stw 3, 248(1) ; CHECK-NEXT: lfd 4, 248(1) -; CHECK-NEXT: bl __gcc_qsub@PLT +; CHECK-NEXT: bl __gcc_qsub ; CHECK-NEXT: stfd 2, 176(1) ; CHECK-NEXT: stfd 1, 168(1) ; CHECK-NEXT: fcmpu 1, 2, 27 @@ -206,7 +206,7 @@ ; CHECK-NEXT: lwz 3, 40(1) ; CHECK-NEXT: stw 3, 56(1) ; CHECK-NEXT: lfd 2, 56(1) -; CHECK-NEXT: bl __gcc_qsub@PLT +; CHECK-NEXT: bl __gcc_qsub ; CHECK-NEXT: mffs 0 ; CHECK-NEXT: mtfsb1 31 ; CHECK-NEXT: lis 3, .LCPI0_2@ha @@ -261,7 +261,7 @@ ; CHECK-NEXT: lwz 3, 104(1) ; CHECK-NEXT: stw 3, 120(1) ; CHECK-NEXT: lfd 2, 120(1) -; CHECK-NEXT: bl __gcc_qsub@PLT +; CHECK-NEXT: bl __gcc_qsub ; CHECK-NEXT: mffs 0 ; CHECK-NEXT: mtfsb1 31 ; CHECK-NEXT: lis 3, .LCPI0_0@ha diff --git a/llvm/test/CodeGen/PowerPC/2010-02-12-saveCR.ll b/llvm/test/CodeGen/PowerPC/2010-02-12-saveCR.ll --- a/llvm/test/CodeGen/PowerPC/2010-02-12-saveCR.ll +++ b/llvm/test/CodeGen/PowerPC/2010-02-12-saveCR.ll @@ -11,7 +11,7 @@ ; CHECK-DAG: ori [[T2:[0-9]+]], [[T2]], 34492 ; CHECK-DAG: stwx [[T1]], 1, [[T2]] ; CHECK-DAG: addi 3, 1, 28 -; CHECK: bl bar@PLT +; CHECK: bl bar %x = alloca [100000 x i8] ; <[100000 x i8]*> [#uses=1] %"alloca point" = bitcast i32 0 to i32 ; [#uses=0] %x1 = bitcast [100000 x i8]* %x to i8* ; [#uses=1] diff --git a/llvm/test/CodeGen/PowerPC/available-externally.ll b/llvm/test/CodeGen/PowerPC/available-externally.ll --- a/llvm/test/CodeGen/PowerPC/available-externally.ll +++ b/llvm/test/CodeGen/PowerPC/available-externally.ll @@ -1,3 +1,4 @@ +; RUN: llc -verify-machineinstrs < %s | FileCheck %s -check-prefix=STATIC ; RUN: llc -verify-machineinstrs < %s -relocation-model=static | FileCheck %s -check-prefix=STATIC ; RUN: llc -verify-machineinstrs < %s -relocation-model=pic -mtriple=powerpc-unknown-linux-gnu | FileCheck %s -check-prefix=PIC ; RUN: llc -verify-machineinstrs < %s -relocation-model=pic -mtriple=powerpc-unknown-linux | FileCheck %s -check-prefix=PICELF @@ -14,7 +15,7 @@ define i32 @foo(i64 %x) nounwind { entry: ; STATIC: foo: -; STATIC: bl exact_log2@PLT +; STATIC: bl exact_log2 ; STATIC: blr ; PIC: foo: diff --git a/llvm/test/CodeGen/PowerPC/srem-lkk.ll b/llvm/test/CodeGen/PowerPC/srem-lkk.ll --- a/llvm/test/CodeGen/PowerPC/srem-lkk.ll +++ b/llvm/test/CodeGen/PowerPC/srem-lkk.ll @@ -139,7 +139,7 @@ ; CHECK-NEXT: .cfi_offset lr, 4 ; CHECK-NEXT: li 5, 0 ; CHECK-NEXT: li 6, 98 -; CHECK-NEXT: bl __moddi3@PLT +; CHECK-NEXT: bl __moddi3 ; CHECK-NEXT: lwz 0, 20(1) ; CHECK-NEXT: addi 1, 1, 16 ; CHECK-NEXT: mtlr 0 diff --git a/llvm/test/CodeGen/PowerPC/stubs.ll b/llvm/test/CodeGen/PowerPC/stubs.ll --- a/llvm/test/CodeGen/PowerPC/stubs.ll +++ b/llvm/test/CodeGen/PowerPC/stubs.ll @@ -6,4 +6,4 @@ } ; CHECK: test1: -; CHECK: bl __floatditf@PLT +; CHECK: bl __floatditf diff --git a/llvm/test/CodeGen/PowerPC/umulo-128-legalisation-lowering.ll b/llvm/test/CodeGen/PowerPC/umulo-128-legalisation-lowering.ll --- a/llvm/test/CodeGen/PowerPC/umulo-128-legalisation-lowering.ll +++ b/llvm/test/CodeGen/PowerPC/umulo-128-legalisation-lowering.ll @@ -63,7 +63,7 @@ ; PPC32-NEXT: mr 28, 9 ; PPC32-NEXT: mr 23, 6 ; PPC32-NEXT: mr 24, 5 -; PPC32-NEXT: bl __multi3@PLT +; PPC32-NEXT: bl __multi3 ; PPC32-NEXT: mr 7, 4 ; PPC32-NEXT: mullw 4, 24, 30 ; PPC32-NEXT: mullw 8, 29, 23 diff --git a/llvm/test/CodeGen/PowerPC/urem-lkk.ll b/llvm/test/CodeGen/PowerPC/urem-lkk.ll --- a/llvm/test/CodeGen/PowerPC/urem-lkk.ll +++ b/llvm/test/CodeGen/PowerPC/urem-lkk.ll @@ -96,7 +96,7 @@ ; CHECK-NEXT: .cfi_offset lr, 4 ; CHECK-NEXT: li 5, 0 ; CHECK-NEXT: li 6, 98 -; CHECK-NEXT: bl __umoddi3@PLT +; CHECK-NEXT: bl __umoddi3 ; CHECK-NEXT: lwz 0, 20(1) ; CHECK-NEXT: addi 1, 1, 16 ; CHECK-NEXT: mtlr 0