aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/negate-i1.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/negate-i1.ll')
-rw-r--r--test/CodeGen/ARM/negate-i1.ll25
1 files changed, 0 insertions, 25 deletions
diff --git a/test/CodeGen/ARM/negate-i1.ll b/test/CodeGen/ARM/negate-i1.ll
deleted file mode 100644
index 0503763e674f..000000000000
--- a/test/CodeGen/ARM/negate-i1.ll
+++ /dev/null
@@ -1,25 +0,0 @@
-; RUN: llc < %s -mtriple=arm-apple-darwin | FileCheck %s
-
-; PR30660 - https://llvm.org/bugs/show_bug.cgi?id=30660
-
-define i32 @select_i32_neg1_or_0(i1 %a) {
-; CHECK-LABEL: select_i32_neg1_or_0:
-; CHECK-NEXT: @ BB#0:
-; CHECK-NEXT: and r0, r0, #1
-; CHECK-NEXT: rsb r0, r0, #0
-; CHECK-NEXT: mov pc, lr
-;
- %b = sext i1 %a to i32
- ret i32 %b
-}
-
-define i32 @select_i32_neg1_or_0_zeroext(i1 zeroext %a) {
-; CHECK-LABEL: select_i32_neg1_or_0_zeroext:
-; CHECK-NEXT: @ BB#0:
-; CHECK-NEXT: rsb r0, r0, #0
-; CHECK-NEXT: mov pc, lr
-;
- %b = sext i1 %a to i32
- ret i32 %b
-}
-