2015-06-24 00:35:26 +08:00
|
|
|
# RUN: not llc -march=x86-64 -start-after branch-folder -stop-after branch-folder -o /dev/null %s 2>&1 | FileCheck %s
|
|
|
|
|
|
|
|
--- |
|
|
|
|
|
|
|
|
define i32 @foo() {
|
|
|
|
entry:
|
|
|
|
ret i32 0
|
|
|
|
}
|
|
|
|
|
|
|
|
...
|
|
|
|
---
|
|
|
|
name: foo
|
|
|
|
body:
|
2015-06-27 00:46:11 +08:00
|
|
|
- id: 0
|
|
|
|
name: entry
|
2015-06-24 00:35:26 +08:00
|
|
|
instructions:
|
2015-06-24 06:39:23 +08:00
|
|
|
# CHECK: [[@LINE+1]]:29: expected ',' before the next machine operand
|
2015-06-24 00:35:26 +08:00
|
|
|
- '%eax = XOR32rr %eax %eflags'
|
|
|
|
- 'RETQ %eax'
|
|
|
|
...
|
|
|
|
|