mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
Use isTargetMachO instead of isTargetDarwin.
llvm-svn: 279655
This commit is contained in:
parent
2b849153ad
commit
92d1fa90a3
@ -282,7 +282,7 @@ bool ARMSubtarget::isGVIndirectSymbol(const GlobalValue *GV) const {
|
||||
// 32 bit macho has no relocation for a-b if a is undefined, even if b is in
|
||||
// the section that is being relocated. This means we have to use o load even
|
||||
// for GVs that are known to be local to the dso.
|
||||
if (isTargetDarwin() && TM.isPositionIndependent() &&
|
||||
if (isTargetMachO() && TM.isPositionIndependent() &&
|
||||
(GV->isDeclarationForLinker() || GV->hasCommonLinkage()))
|
||||
return true;
|
||||
|
||||
|
10
test/CodeGen/ARM/macho-extern-hidden.ll
Normal file
10
test/CodeGen/ARM/macho-extern-hidden.ll
Normal file
@ -0,0 +1,10 @@
|
||||
; RUN: llc < %s -mtriple=thumbv7em-apple-unknown-macho | FileCheck %s
|
||||
|
||||
; CHECK: movw r0, :lower16:(L_bar$non_lazy_ptr-(LPC0_0+4))
|
||||
; CHECK: movt r0, :upper16:(L_bar$non_lazy_ptr-(LPC0_0+4))
|
||||
|
||||
@bar = external hidden global i32
|
||||
define i32 @foo() {
|
||||
%tmp = load i32, i32* @bar, align 4
|
||||
ret i32 %tmp
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user