linux-packaging-mono/external/llvm/test/CodeGen/ARM/available_externally.ll
Xamarin Public Jenkins (auto-signing) 8625704ad8 Imported Upstream version 5.18.0.179
Former-commit-id: 67aa10e65b237e1c4537630979ee99ebe1374215
2018-10-25 08:34:57 +00:00

19 lines
446 B
LLVM

; RUN: llc < %s -mtriple=arm-apple-darwin -relocation-model=pic | FileCheck %s
; rdar://9027648
@A = available_externally hidden constant i32 1
@B = external hidden constant i32
define i32 @t1() {
%tmp = load i32, i32* @A
store i32 %tmp, i32* @B
ret i32 %tmp
}
; CHECK: L_A$non_lazy_ptr:
; CHECK-NEXT: .indirect_symbol _A
; CHECK-NEXT: .long 0
; CHECK: L_B$non_lazy_ptr:
; CHECK-NEXT: .indirect_symbol _B
; CHECK-NEXT: .long 0