Vasileios Kalintiris | bb60cfb | 2015-04-17 12:01:02 +0000 | [diff] [blame] | 1 | ; RUN: llc < %s -march=mips64 -mcpu=mips3 | FileCheck %s |
Vasileios Kalintiris | 044e172 | 2015-08-04 14:26:35 +0000 | [diff] [blame] | 2 | ; We have to XFAIL this temporarily because of the reversion of r229675. |
| 3 | ; XFAIL: * |
Vasileios Kalintiris | bb60cfb | 2015-04-17 12:01:02 +0000 | [diff] [blame] | 4 | |
| 5 | ; Currently, the following IR assembly generates a KILL instruction between |
| 6 | ; the bitwise-and instruction and the return instruction. We verify that the |
| 7 | ; delay slot filler ignores such KILL instructions by filling the slot of the |
| 8 | ; return instruction properly. |
| 9 | define signext i32 @f1(i32 signext %a, i32 signext %b) { |
| 10 | entry: |
| 11 | ; CHECK: jr $ra |
| 12 | ; CHECK-NEXT: and $2, $4, $5 |
| 13 | |
| 14 | %r = and i32 %a, %b |
| 15 | ret i32 %r |
| 16 | } |