Use isTargetMachO instead of isTargetDarwin.

llvm-svn: 279655
This commit is contained in:
Rafael Espindola 2016-08-24 19:02:29 +00:00
parent 2b849153ad
commit 92d1fa90a3
2 changed files with 11 additions and 1 deletions

View File

@ -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;

View 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
}