summaryrefslogtreecommitdiff
path: root/test/CodeGen/R600/selectcc-cnde-int.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/R600/selectcc-cnde-int.ll')
-rw-r--r--test/CodeGen/R600/selectcc-cnde-int.ll12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CodeGen/R600/selectcc-cnde-int.ll b/test/CodeGen/R600/selectcc-cnde-int.ll
new file mode 100644
index 0000000000000..768dc7dbf418d
--- /dev/null
+++ b/test/CodeGen/R600/selectcc-cnde-int.ll
@@ -0,0 +1,12 @@
+;RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s
+
+;CHECK-NOT: SETE_INT
+;CHECK: CNDE_INT * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}, 1, literal.x,
+;CHECK-NEXT: 2
+define void @test(i32 addrspace(1)* %out, i32 addrspace(1)* %in) {
+ %1 = load i32 addrspace(1)* %in
+ %2 = icmp eq i32 %1, 0
+ %3 = select i1 %2, i32 1, i32 2
+ store i32 %3, i32 addrspace(1)* %out
+ ret void
+}