aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM/load-global.ll
blob: 45f4148ab27975f01f5d8862f570286bb2d4cc1e (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm &&
; RUN: llvm-upgrade < %s | llvm-as | llc -mtriple=arm-apple-darwin -relocation-model=dynamic-no-pic | grep "L_G$non_lazy_ptr" | wc -l | grep 2 &&
; RUN: llvm-upgrade < %s | llvm-as | llc -mtriple=arm-apple-darwin -relocation-model=pic | grep "ldr.*pc" | wc -l | grep 1

%G = external global int

int %test1() {
	%tmp = load int* %G
	ret int %tmp
}