[x86/MIR] Implement support for pre- and post-instruction symbols, as
[llvm-complete.git] / test / CodeGen / MIR / X86 / unknown-subregister-index-op.mir
blob18eb3e73566269418369fd0f5a4b545645d11939
1 # RUN: not llc -march=x86-64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
2 # This test ensures that an error is reported when an unknown subregister index
3 # is encountered.
5 --- |
7   define zeroext i1 @t(i1 %c) {
8   entry:
9     ret i1 %c
10   }
12 ...
13 ---
14 name:            t
15 tracksRegLiveness: true
16 registers:
17   - { id: 0, class: gr32 }
18   - { id: 1, class: gr8 }
19   - { id: 2, class: gr8 }
20 body: |
21   bb.0.entry:
22     ; CHECK: [[@LINE+1]]:35: unknown subregister index 'bit8'
23     %0 = INSERT_SUBREG $edi, $al, %subreg.bit8
24     RETQ %0
25 ...