Add nounwind keywords.
[oota-llvm.git] / test / CodeGen / Thumb2 / thumb2-ldrb.ll
1 ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {ldrb\\.w r0} | count 5
2 ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {ldrb r0} | count 2
3 ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep mov\\.w | grep 1
4 ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | not grep mvn\\.w
5 ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep ldrb\\.w | grep lsl
6 ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep lsr\\.w | not grep ldrb
7
8 define i8 @f1(i8* %v) {
9 entry:
10         %tmp = load i8* %v
11         ret i8 %tmp
12 }
13
14 define i8 @f2(i8* %v) {
15 entry:
16         %tmp2 = getelementptr i8* %v, i8 1023
17         %tmp = load i8* %tmp2
18         ret i8 %tmp
19 }
20
21 define i8 @f3(i32 %base) {
22 entry:
23         %tmp1 = add i32 %base, 4096
24         %tmp2 = inttoptr i32 %tmp1 to i8*
25         %tmp3 = load i8* %tmp2
26         ret i8 %tmp3
27 }
28
29 define i8 @f4(i32 %base) {
30 entry:
31         %tmp1 = sub i32 %base, 128
32         %tmp2 = inttoptr i32 %tmp1 to i8*
33         %tmp3 = load i8* %tmp2
34         ret i8 %tmp3
35 }
36
37 define i8 @f5(i32 %base, i32 %offset) {
38 entry:
39         %tmp1 = add i32 %base, %offset
40         %tmp2 = inttoptr i32 %tmp1 to i8*
41         %tmp3 = load i8* %tmp2
42         ret i8 %tmp3
43 }
44
45 define i8 @f6(i32 %base, i32 %offset) {
46 entry:
47         %tmp1 = shl i32 %offset, 2
48         %tmp2 = add i32 %base, %tmp1
49         %tmp3 = inttoptr i32 %tmp2 to i8*
50         %tmp4 = load i8* %tmp3
51         ret i8 %tmp4
52 }
53
54 define i8 @f7(i32 %base, i32 %offset) {
55 entry:
56         %tmp1 = lshr i32 %offset, 2
57         %tmp2 = add i32 %base, %tmp1
58         %tmp3 = inttoptr i32 %tmp2 to i8*
59         %tmp4 = load i8* %tmp3
60         ret i8 %tmp4
61 }