Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / MIR / X86 / expected-comma-after-memory-operand.mir
blobeba584e129eb3111b8e5509fc350db7f5d03cf21
1 # RUN: not llc -march=x86-64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
3 --- |
5   define void @test(i32* %a) {
6   entry2:
7     %b = load i32, i32* %a
8     %c = add i32 %b, 1
9     store i32 %c, i32* %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 ...