linux-packaging-mono/external/llvm/test/CodeGen/ARM/available_externally.ll
Xamarin Public Jenkins (auto-signing) f32dbaf0b2 Imported Upstream version 5.18.0.225
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
2018-12-21 19:01:49 +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