aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen')
-rw-r--r--test/CodeGen/ARM/mvncc.ll12
-rw-r--r--test/CodeGen/Thumb2/thumb2-mvncc.ll13
2 files changed, 0 insertions, 25 deletions
diff --git a/test/CodeGen/ARM/mvncc.ll b/test/CodeGen/ARM/mvncc.ll
deleted file mode 100644
index 4003a95c62..0000000000
--- a/test/CodeGen/ARM/mvncc.ll
+++ /dev/null
@@ -1,12 +0,0 @@
-; RUN: llc < %s -mtriple=arm-apple-darwin | FileCheck %s
-
-define i32 @f1(i32 %t) nounwind {
-; CHECK: f1
-; CHECK-NOT: tst
-; CHECK: and
-; CHECK: mvnne
- %and = and i32 %t, 256
- %tobool = icmp eq i32 %and, 0
- %retval.0 = select i1 %tobool, i32 0, i32 -26
- ret i32 %retval.0
-}
diff --git a/test/CodeGen/Thumb2/thumb2-mvncc.ll b/test/CodeGen/Thumb2/thumb2-mvncc.ll
deleted file mode 100644
index 893728b512..0000000000
--- a/test/CodeGen/Thumb2/thumb2-mvncc.ll
+++ /dev/null
@@ -1,13 +0,0 @@
-; RUN: llc < %s -mtriple=thumbv7-apple-darwin | FileCheck %s
-
-define i32 @f1(i32 %t) nounwind {
-; CHECK: f1
-; CHECK-NOT: tst
-; CHECK: ands
-; CHECK: it ne
-; CHECK: mvnne
- %and = and i32 %t, 256
- %tobool = icmp eq i32 %and, 0
- %retval.0 = select i1 %tobool, i32 0, i32 -26
- ret i32 %retval.0
-}