aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM/available_externally.ll
blob: d925b5c77706a39cbeb6a33c7e7dbe0ae404b726 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; 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* @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