aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/2012-08-30-select.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/2012-08-30-select.ll')
-rw-r--r--test/CodeGen/ARM/2012-08-30-select.ll17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/CodeGen/ARM/2012-08-30-select.ll b/test/CodeGen/ARM/2012-08-30-select.ll
deleted file mode 100644
index dbedad2637b7..000000000000
--- a/test/CodeGen/ARM/2012-08-30-select.ll
+++ /dev/null
@@ -1,17 +0,0 @@
-; RUN: llc < %s -mtriple=thumbv7-apple-ios | FileCheck %s
-; rdar://12201387
-
-;CHECK-LABEL: select_s_v_v:
-;CHECK: itee ne
-;CHECK-NEXT: vmovne.i32
-;CHECK-NEXT: vmoveq
-;CHECK-NEXT: vmoveq
-;CHECK: bx
-define <16 x i8> @select_s_v_v(<16 x i8> %vec, i32 %avail) {
-entry:
- %and = and i32 %avail, 1
- %tobool = icmp eq i32 %and, 0
- %ret = select i1 %tobool, <16 x i8> %vec, <16 x i8> zeroinitializer
- ret <16 x i8> %ret
-}
-