mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-27 12:26:08 +00:00
llvm-gcc sometimes marks external declarations hidden, because intializers are
processed separately. Honour such situation and emit PIC relocations properly in such case. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53091 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -47,7 +47,8 @@ bool X86Subtarget::GVRequiresExtraLoad(const GlobalValue* GV,
|
|||||||
// Extra load is needed for all externally visible.
|
// Extra load is needed for all externally visible.
|
||||||
if (isDirectCall)
|
if (isDirectCall)
|
||||||
return false;
|
return false;
|
||||||
if (GV->hasInternalLinkage() || GV->hasHiddenVisibility())
|
if (GV->hasInternalLinkage() ||
|
||||||
|
(GV->hasHiddenVisibility() && !GV->isDeclaration()))
|
||||||
return false;
|
return false;
|
||||||
return true;
|
return true;
|
||||||
} else if (isTargetCygMing() || isTargetWindows()) {
|
} else if (isTargetCygMing() || isTargetWindows()) {
|
||||||
|
Reference in New Issue
Block a user