1# RUN: not llc -march=x86-64 -run-pass none -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--- 12name: foo 13body: | 14 bb.0.entry: 15 ; CHECK: [[@LINE+1]]:25: expected ',' before the next machine operand 16 $eax = XOR32rr $eax $eflags 17 RETQ $eax 18... 19 20