[OptTable] Fix typo VALUE => VALUES (NFCI) (#121523)
[llvm-project.git] / llvm / test / CodeGen / MIR / X86 / machine-instructions.mir
blob07aafd088f7ff1c18d1145be750b9db03bd338df
1 # RUN: llc -mtriple=x86_64 -run-pass none -o - %s | FileCheck %s
2 # This test ensures that the MIR parser parses X86 machine instructions
3 # correctly.
5 --- |
7   define i32 @inc(i32 %a) {
8   entry:
9     %b = mul i32 %a, 11
10     ret i32 %b
11   }
13 ...
14 ---
15 # CHECK: name: inc
16 name:            inc
17 body: |
18   bb.0.entry:
19     ; CHECK:      MOV32rr
20     ; CHECK-NEXT: RET64
21     $eax = MOV32rr $eax
22      RET64 $eax
23 ...