aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/Mips/delay-slot-kill.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Mips/delay-slot-kill.ll')
-rw-r--r--test/CodeGen/Mips/delay-slot-kill.ll16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/CodeGen/Mips/delay-slot-kill.ll b/test/CodeGen/Mips/delay-slot-kill.ll
deleted file mode 100644
index 5e301441fd26..000000000000
--- a/test/CodeGen/Mips/delay-slot-kill.ll
+++ /dev/null
@@ -1,16 +0,0 @@
-; RUN: llc < %s -march=mips64 -mcpu=mips3 | FileCheck %s
-; We have to XFAIL this temporarily because of the reversion of r229675.
-; XFAIL: *
-
-; Currently, the following IR assembly generates a KILL instruction between
-; the bitwise-and instruction and the return instruction. We verify that the
-; delay slot filler ignores such KILL instructions by filling the slot of the
-; return instruction properly.
-define signext i32 @f1(i32 signext %a, i32 signext %b) {
-entry:
- ; CHECK: jr $ra
- ; CHECK-NEXT: and $2, $4, $5
-
- %r = and i32 %a, %b
- ret i32 %r
-}