Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / MIR / X86 / roundtrip.mir
blob46f08ad1a214dab717e206dc3a8d5edaace96961
1 # RUN: llc -o - %s -mtriple=x86_64-- -run-pass=none | llc -o - -x mir - -mtriple=x86_64-- -run-pass=none | FileCheck %s
2 ---
3 # CHECK-LABEL: name: func0
4 # CHECK: registers:
5 # CHECK:   - { id: 0, class: gr32, preferred-register: '' }
6 # CHECK:   - { id: 1, class: gr32, preferred-register: '' }
7 # CHECK: body: |
8 # CHECK:   bb.0:
9 # CHECK:     %0:gr32 = MOV32r0 implicit-def $eflags
10 # CHECK:     dead %1:gr32 = COPY %0
11 # CHECK:     MOV32mr undef $rcx, 1, $noreg, 0, $noreg, killed %0 :: (volatile store (s32))
12 # CHECK:     RET64 undef $eax
13 name: func0
14 body: |
15   bb.0:
16     %0 : gr32 = MOV32r0 implicit-def $eflags
17     dead %1 : gr32 = COPY %0
18     MOV32mr undef $rcx, 1, _, 0, _, killed %0 :: (volatile store (s32))
19     RET64 undef $eax
20 ...