[OptTable] Fix typo VALUE => VALUES (NFCI) (#121523)
[llvm-project.git] / llvm / test / CodeGen / MIR / X86 / expected-comma-after-memory-operand.mir
blobb9b520e86de08ca5ec2ec41cc5f773a0998419f7
1 # RUN: not llc -mtriple=x86_64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
3 --- |
5   define void @test(ptr %a) {
6   entry2:
7     %b = load i32, ptr %a
8     %c = add i32 %b, 1
9     store i32 %c, ptr %a
10     ret void
11   }
13 ...
14 ---
15 name:            test
16 tracksRegLiveness: true
17 liveins:
18   - { reg: '$rdi' }
19 body: |
20   bb.0.entry2:
21     liveins: $rdi
22   ; CHECK: [[@LINE+1]]:91: expected ',' before the next machine memory operand
23     INC32m killed $rdi, 1, _, 0, _, implicit-def dead $eflags :: (store (s32) into %ir.a) (load (s32) from %ir.a)
24     RET64
25 ...