Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / MIR / X86 / dead-register-flag.mir
blobe01fd8d2b082440d7a550ad9f10a3a427c8808c0
1 # RUN: llc -march=x86-64 -run-pass none -o - %s | FileCheck %s
2 # This test ensures that the MIR parser parses the 'dead' register flags
3 # correctly.
5 --- |
7   define i32 @foo(i32 %a) #0 {
8   body:
9     %c = mul i32 %a, 11
10     ret i32 %c
11   }
13   attributes #0 = { "frame-pointer"="none" }
15 ...
16 ---
17 name:            foo
18 body: |
19   ; CHECK: bb.0.body:
20   bb.0.body:
21     ; CHECK: $eax = IMUL32rri8 $edi, 11, implicit-def dead $eflags
22     $eax = IMUL32rri8 $edi, 11, implicit-def dead $eflags
23     RET64 $eax
24 ...