blob: d1565d1c78ef6d9f7be39a228e453f02cc7783bd [file] [log] [blame]
Dan Gohmanda594cf2009-09-09 00:09:15 +00001; RUN: llc < %s -march=arm | grep moveq | count 1
2; RUN: llc < %s -march=arm | grep movgt | count 1
3; RUN: llc < %s -march=arm | grep movlt | count 3
4; RUN: llc < %s -march=arm | grep movle | count 1
5; RUN: llc < %s -march=arm | grep movls | count 1
6; RUN: llc < %s -march=arm | grep movhi | count 1
7; RUN: llc < %s -march=arm -mattr=+vfp2 | \
Dan Gohman8c89a502007-08-15 13:36:28 +00008; RUN: grep fcpydmi | count 1
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009
10define i32 @f1(i32 %a.s) {
11entry:
12 %tmp = icmp eq i32 %a.s, 4
13 %tmp1.s = select i1 %tmp, i32 2, i32 3
14 ret i32 %tmp1.s
15}
16
17define i32 @f2(i32 %a.s) {
18entry:
19 %tmp = icmp sgt i32 %a.s, 4
20 %tmp1.s = select i1 %tmp, i32 2, i32 3
21 ret i32 %tmp1.s
22}
23
24define i32 @f3(i32 %a.s, i32 %b.s) {
25entry:
26 %tmp = icmp slt i32 %a.s, %b.s
27 %tmp1.s = select i1 %tmp, i32 2, i32 3
28 ret i32 %tmp1.s
29}
30
31define i32 @f4(i32 %a.s, i32 %b.s) {
32entry:
33 %tmp = icmp sle i32 %a.s, %b.s
34 %tmp1.s = select i1 %tmp, i32 2, i32 3
35 ret i32 %tmp1.s
36}
37
38define i32 @f5(i32 %a.u, i32 %b.u) {
39entry:
40 %tmp = icmp ule i32 %a.u, %b.u
41 %tmp1.s = select i1 %tmp, i32 2, i32 3
42 ret i32 %tmp1.s
43}
44
45define i32 @f6(i32 %a.u, i32 %b.u) {
46entry:
47 %tmp = icmp ugt i32 %a.u, %b.u
48 %tmp1.s = select i1 %tmp, i32 2, i32 3
49 ret i32 %tmp1.s
50}
51
52define double @f7(double %a, double %b) {
53 %tmp = fcmp olt double %a, 1.234e+00
54 %tmp1 = select i1 %tmp, double -1.000e+00, double %b
55 ret double %tmp1
56}