mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 02:31:26 +00:00
Optimize PIC implementation. GOTOFF can be used when the symbol is defined
and used in the same module. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37044 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
69642f11ed
commit
930d161ba2
@ -792,7 +792,7 @@ SDOperand ARMTargetLowering::LowerGlobalAddressELF(SDOperand Op,
|
||||
GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
|
||||
Reloc::Model RelocM = getTargetMachine().getRelocationModel();
|
||||
if (RelocM == Reloc::PIC_) {
|
||||
bool UseGOTOFF = GV->hasInternalLinkage();
|
||||
bool UseGOTOFF = !GV->isDeclaration();
|
||||
ARMConstantPoolValue *CPV =
|
||||
new ARMConstantPoolValue(GV, ARMCP::CPValue, UseGOTOFF ? "GOTOFF":"GOT");
|
||||
SDOperand CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 2);
|
||||
|
Loading…
x
Reference in New Issue
Block a user