Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / MIR / X86 / expected-subregister-after-colon.mir
blob25a352a06d20d1c297dc5db119d3687d5d64a1a3
1 # RUN: not llc -march=x86-64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
3 --- |
5   define zeroext i1 @t(i1 %c) {
6   entry:
7     ret i1 %c
8   }
10 ...
11 ---
12 name:            t
13 tracksRegLiveness: true
14 registers:
15   - { id: 0, class: gr32 }
16   - { id: 1, class: gr8 }
17   - { id: 2, class: gr8 }
18 body: |
19   bb.0.entry:
20     %0 = COPY $edi
21     ; CHECK: [[@LINE+1]]:20: expected a subregister index after '.'
22     %1 = COPY %0 . 42
23     %2 = AND8ri %1, 1, implicit-def $eflags
24     $al = COPY %2
25     RET64 $al
26 ...