forked from OSchip/llvm-project
30 lines
574 B
Plaintext
30 lines
574 B
Plaintext
|
# RUN: not llc -start-after branch-folder -stop-after branch-folder -o /dev/null %s 2>&1 | FileCheck %s
|
||
|
|
||
|
--- |
|
||
|
|
||
|
define i32 @foo(i32 %a) {
|
||
|
entry:
|
||
|
%0 = icmp sle i32 %a, 10
|
||
|
br i1 %0, label %less, label %exit
|
||
|
|
||
|
less:
|
||
|
ret i32 0
|
||
|
|
||
|
exit:
|
||
|
ret i32 %a
|
||
|
}
|
||
|
|
||
|
...
|
||
|
---
|
||
|
name: foo
|
||
|
body:
|
||
|
- id: 0
|
||
|
name: entry
|
||
|
# CHECK: [[@LINE+1]]:46: expected end of string after the machine basic block reference
|
||
|
successors: [ '%bb.1.less', '%bb.2.exit 2' ]
|
||
|
- id: 1
|
||
|
name: less
|
||
|
- id: 2
|
||
|
name: exit
|
||
|
...
|