mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-02 09:33:59 +00:00
18 lines
291 B
Plaintext
18 lines
291 B
Plaintext
|
# RUN: not llc -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:
|
||
|
# CHECK: redefinition of machine basic block with id #0
|
||
|
- id: 0
|
||
|
- id: 0
|
||
|
...
|