Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / MIR / X86 / tied-physical-regs-match.mir
blob1e4104e8ebda03618c6e7a8992e13c529cf0aa1e
1 # RUN: not --crash llc -march=x86-64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
2 # This test ensures that the Machine Verifier detects tied physical registers
3 # that doesn't match.
5 --- |
7   define i32 @foo() {
8   entry:
9     ret i32 0
10   }
12 ...
13 ---
14 name:            foo
15 body: |
16   bb.0.entry:
17     liveins: $rdi
19     ; CHECK: Tied physical registers must match.
20     $rbx = AND64rm killed $rdx, killed $rdi, 1, _, 0, _, implicit-def dead $eflags
21     RET64 $rbx
22 ...