more condition codes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30567 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/ARM/select.ll b/test/CodeGen/ARM/select.ll
index 7204c80..0bfffc8 100644
--- a/test/CodeGen/ARM/select.ll
+++ b/test/CodeGen/ARM/select.ll
@@ -1,8 +1,49 @@
-; RUN: llvm-as < %s | llc -march=arm
+; RUN: llvm-as < %s | llc -march=arm &&
+; RUN: llvm-as < %s | llc -march=arm | grep moveq | wc -l | grep 1 &&
+; RUN: llvm-as < %s | llc -march=arm | grep movgt | wc -l | grep 1 &&
+; RUN: llvm-as < %s | llc -march=arm | grep movlt | wc -l | grep 1 &&
+; RUN: llvm-as < %s | llc -march=arm | grep movle | wc -l | grep 1 &&
+; RUN: llvm-as < %s | llc -march=arm | grep movls | wc -l | grep 1 &&
+; RUN: llvm-as < %s | llc -march=arm | grep movhi | wc -l | grep 1
-int %f(int %a) {
+int %f1(int %a) {
entry:
%tmp = seteq int %a, 4 ; <bool> [#uses=1]
%tmp1 = select bool %tmp, int 2, int 3
ret int %tmp1
}
+
+int %f2(int %a) {
+entry:
+ %tmp = setgt int %a, 4 ; <bool> [#uses=1]
+ %tmp1 = select bool %tmp, int 2, int 3
+ ret int %tmp1
+}
+
+int %f3(int %a, int %b) {
+entry:
+ %tmp = setlt int %a, %b ; <bool> [#uses=1]
+ %tmp1 = select bool %tmp, int 2, int 3
+ ret int %tmp1
+}
+
+int %f4(int %a, int %b) {
+entry:
+ %tmp = setle int %a, %b ; <bool> [#uses=1]
+ %tmp1 = select bool %tmp, int 2, int 3
+ ret int %tmp1
+}
+
+int %f5(uint %a, uint %b) {
+entry:
+ %tmp = setle uint %a, %b ; <bool> [#uses=1]
+ %tmp1 = select bool %tmp, int 2, int 3
+ ret int %tmp1
+}
+
+int %f6(uint %a, uint %b) {
+entry:
+ %tmp = setgt uint %a, %b ; <bool> [#uses=1]
+ %tmp1 = select bool %tmp, int 2, int 3
+ ret int %tmp1
+}