Add a thumb2 pass to insert IT blocks.
[oota-llvm.git] / test / CodeGen / Thumb2 / thumb2-select_xform.ll
1 ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep mov | count 3
2 ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep mvn | count 1
3 ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep it  | count 3
4
5 define i32 @t1(i32 %a, i32 %b, i32 %c) nounwind {
6         %tmp1 = icmp sgt i32 %c, 10
7         %tmp2 = select i1 %tmp1, i32 0, i32 2147483647
8         %tmp3 = add i32 %tmp2, %b
9         ret i32 %tmp3
10 }
11
12 define i32 @t2(i32 %a, i32 %b, i32 %c) nounwind {
13         %tmp1 = icmp sgt i32 %c, 10
14         %tmp2 = select i1 %tmp1, i32 0, i32 2147483648
15         %tmp3 = add i32 %tmp2, %b
16         ret i32 %tmp3
17 }
18
19 define i32 @t3(i32 %a, i32 %b, i32 %c, i32 %d) nounwind {
20         %tmp1 = icmp sgt i32 %c, 10
21         %tmp2 = select i1 %tmp1, i32 0, i32 10
22         %tmp3 = sub i32 %b, %tmp2
23         ret i32 %tmp3
24 }