summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/addrmode.ll
blob: 9ccff07d456bbc579878b7cad6ed69c8de3b6918 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; RUN: llc < %s -march=arm -stats |& grep asm-printer | grep 4

define i32 @t1(i32 %a) {
	%b = mul i32 %a, 9
        %c = inttoptr i32 %b to i32*
        %d = load i32* %c
	ret i32 %d
}

define i32 @t2(i32 %a) {
	%b = mul i32 %a, -7
        %c = inttoptr i32 %b to i32*
        %d = load i32* %c
	ret i32 %d
}