mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
fix indentation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75277 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e2c920845a
commit
c7822326df
@ -50,20 +50,20 @@ ClassifyGlobalReference(const GlobalValue *GV, const TargetMachine &TM) const {
|
||||
if (TM.getCodeModel() == CodeModel::Large)
|
||||
return X86II::MO_NO_FLAG;
|
||||
|
||||
if (isTargetDarwin()) {
|
||||
// If symbol visibility is hidden, the extra load is not needed if
|
||||
// target is x86-64 or the symbol is definitely defined in the current
|
||||
// translation unit.
|
||||
if (GV->hasDefaultVisibility() &&
|
||||
(GV->isDeclaration() || GV->isWeakForLinker()))
|
||||
return X86II::MO_GOTPCREL;
|
||||
} else {
|
||||
assert(isTargetELF() && "Unknown rip-relative target");
|
||||
if (isTargetDarwin()) {
|
||||
// If symbol visibility is hidden, the extra load is not needed if
|
||||
// target is x86-64 or the symbol is definitely defined in the current
|
||||
// translation unit.
|
||||
if (GV->hasDefaultVisibility() &&
|
||||
(GV->isDeclaration() || GV->isWeakForLinker()))
|
||||
return X86II::MO_GOTPCREL;
|
||||
} else {
|
||||
assert(isTargetELF() && "Unknown rip-relative target");
|
||||
|
||||
// Extra load is needed for all externally visible.
|
||||
if (!GV->hasLocalLinkage() && GV->hasDefaultVisibility())
|
||||
return X86II::MO_GOTPCREL;
|
||||
}
|
||||
// Extra load is needed for all externally visible.
|
||||
if (!GV->hasLocalLinkage() && GV->hasDefaultVisibility())
|
||||
return X86II::MO_GOTPCREL;
|
||||
}
|
||||
|
||||
return X86II::MO_NO_FLAG;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user