aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM/hidden-vis-2.ll
blob: a104f354295d942fc0a6f6b75759a9793b987dd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: llc < %s -relocation-model=dynamic-no-pic -mtriple=arm-apple-darwin | FileCheck %s

@x = weak hidden global i32 0		; <i32*> [#uses=1]

define i32 @t() nounwind readonly {
entry:
; CHECK-LABEL: t:
; CHECK: ldr
; CHECK-NEXT: ldr
	%0 = load i32, i32* @x, align 4		; <i32> [#uses=1]
	ret i32 %0
}