MIR Serialization: Serialize physical register machine operands.
[oota-llvm.git] / test / CodeGen / MIR / X86 / missing-comma.mir
1 # RUN: not llc -march=x86-64 -start-after branch-folder -stop-after branch-folder -o /dev/null %s 2>&1 | FileCheck %s
2
3 --- |
4
5   define i32 @foo() {
6   entry:
7     ret i32 0
8   }
9
10 ...
11 ---
12 name:            foo
13 body:
14  - name:         entry
15    instructions:
16      # CHECK: 1:21: expected ',' before the next machine operand
17      - '%eax = XOR32rr %eax %eflags'
18      - 'RETQ %eax'
19 ...
20