aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Target/ARM/ARMFastISel.cpp
diff options
context:
space:
mode:
authorPeter Collingbourne <peter@pcc.me.uk>2015-10-26 20:46:44 +0000
committerPeter Collingbourne <peter@pcc.me.uk>2015-10-26 20:46:44 +0000
commit99fac80db26602b7c2b30d4bf6136bfd6398406f (patch)
treefff8f3e62a803468f341ee04de90d2034cfbfb07 /llvm/lib/Target/ARM/ARMFastISel.cpp
parent3e9560200f6763c10a704fa9e08ad167cef1fb25 (diff)
downloadllvm-99fac80db26602b7c2b30d4bf6136bfd6398406f.zip
llvm-99fac80db26602b7c2b30d4bf6136bfd6398406f.tar.gz
llvm-99fac80db26602b7c2b30d4bf6136bfd6398406f.tar.bz2
ARM/ELF: Restore original (pre-r251322) logic for deciding whether to use GOT.
Unbreaks linking with gold, which cannot resolve direct relocations referring to global symbols. llvm-svn: 251342
Diffstat (limited to 'llvm/lib/Target/ARM/ARMFastISel.cpp')
-rw-r--r--llvm/lib/Target/ARM/ARMFastISel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMFastISel.cpp b/llvm/lib/Target/ARM/ARMFastISel.cpp
index a2093eb..1751074 100644
--- a/llvm/lib/Target/ARM/ARMFastISel.cpp
+++ b/llvm/lib/Target/ARM/ARMFastISel.cpp
@@ -2940,7 +2940,7 @@ bool ARMFastISel::tryToFoldLoadIntoMI(MachineInstr *MI, unsigned OpNo,
unsigned ARMFastISel::ARMLowerPICELF(const GlobalValue *GV,
unsigned Align, MVT VT) {
bool UseGOT_PREL =
- !(GV->hasHiddenVisibility() || GV->isStrongDefinitionForLinker());
+ !(GV->hasHiddenVisibility() || GV->hasLocalLinkage());
LLVMContext *Context = &MF->getFunction()->getContext();
unsigned ARMPCLabelIndex = AFI->createPICLabelUId();