blob: d1565d1c78ef6d9f7be39a228e453f02cc7783bd [file] [log] [blame]
Dan Gohmanfce288f2009-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 Gohman28beeea2007-08-15 13:36:28 +00008; RUN: grep fcpydmi | count 1
Chris Lattner0af617f2006-08-22 06:43:24 +00009
Reid Spencere3ff5ad2007-01-26 08:25:06 +000010define i32 @f1(i32 %a.s) {
Rafael Espindola3c000bf2006-08-21 22:00:32 +000011entry:
Evan Cheng02b985c2007-01-19 09:20:23 +000012 %tmp = icmp eq i32 %a.s, 4
13 %tmp1.s = select i1 %tmp, i32 2, i32 3
14 ret i32 %tmp1.s
Rafael Espindola3c000bf2006-08-21 22:00:32 +000015}
Rafael Espindolaebdabda2006-09-21 13:06:26 +000016
Reid Spencere3ff5ad2007-01-26 08:25:06 +000017define i32 @f2(i32 %a.s) {
Rafael Espindolaebdabda2006-09-21 13:06:26 +000018entry:
Evan Cheng02b985c2007-01-19 09:20:23 +000019 %tmp = icmp sgt i32 %a.s, 4
20 %tmp1.s = select i1 %tmp, i32 2, i32 3
21 ret i32 %tmp1.s
Rafael Espindolaebdabda2006-09-21 13:06:26 +000022}
23
Reid Spencere3ff5ad2007-01-26 08:25:06 +000024define i32 @f3(i32 %a.s, i32 %b.s) {
Rafael Espindolaebdabda2006-09-21 13:06:26 +000025entry:
Evan Cheng02b985c2007-01-19 09:20:23 +000026 %tmp = icmp slt i32 %a.s, %b.s
27 %tmp1.s = select i1 %tmp, i32 2, i32 3
28 ret i32 %tmp1.s
Rafael Espindolaebdabda2006-09-21 13:06:26 +000029}
30
Reid Spencere3ff5ad2007-01-26 08:25:06 +000031define i32 @f4(i32 %a.s, i32 %b.s) {
Rafael Espindolaebdabda2006-09-21 13:06:26 +000032entry:
Evan Cheng02b985c2007-01-19 09:20:23 +000033 %tmp = icmp sle i32 %a.s, %b.s
34 %tmp1.s = select i1 %tmp, i32 2, i32 3
35 ret i32 %tmp1.s
Rafael Espindolaebdabda2006-09-21 13:06:26 +000036}
37
Reid Spencere3ff5ad2007-01-26 08:25:06 +000038define i32 @f5(i32 %a.u, i32 %b.u) {
Rafael Espindolaebdabda2006-09-21 13:06:26 +000039entry:
Evan Cheng02b985c2007-01-19 09:20:23 +000040 %tmp = icmp ule i32 %a.u, %b.u
41 %tmp1.s = select i1 %tmp, i32 2, i32 3
42 ret i32 %tmp1.s
Rafael Espindolaebdabda2006-09-21 13:06:26 +000043}
44
Reid Spencere3ff5ad2007-01-26 08:25:06 +000045define i32 @f6(i32 %a.u, i32 %b.u) {
Rafael Espindolaebdabda2006-09-21 13:06:26 +000046entry:
Evan Cheng02b985c2007-01-19 09:20:23 +000047 %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
Reid Spencere3ff5ad2007-01-26 08:25:06 +000052define double @f7(double %a, double %b) {
Evan Cheng02b985c2007-01-19 09:20:23 +000053 %tmp = fcmp olt double %a, 1.234e+00
54 %tmp1 = select i1 %tmp, double -1.000e+00, double %b
55 ret double %tmp1
Rafael Espindolaebdabda2006-09-21 13:06:26 +000056}