[OptTable] Fix typo VALUE => VALUES (NFCI) (#121523)
[llvm-project.git] / llvm / test / CodeGen / MIR / X86 / undefined-virtual-register.mir
blob820291c26989b1c9d9e1de3ab9db2c5c2fae9f54
1 # RUN: not llc -mtriple=x86_64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
2 # This test ensures that the MIR parser reports an error when parsing a
3 # reference to an undefined virtual register.
5 --- |
7   define i32 @test(i32 %a) {
8   entry:
9     ret i32 %a
10   }
12 ...
13 ---
14 name:            test
15 tracksRegLiveness: true
16 registers:
17   - { id: 0, class: gr32 }
18 body: |
19   bb.0.entry:
20     %0 = COPY $edi
21     ; CHECK: Cannot determine class/bank of virtual register 1 in function 'test'
22     $eax = COPY %1
23     RET64 $eax
24 ...