mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-21 16:31:16 +00:00
13 lines
222 B
LLVM
13 lines
222 B
LLVM
|
;RUN: llvm-as < %s | opt -simplifycfg | llvm-dis | not grep 'br label'
|
||
|
void %test(bool %C) {
|
||
|
br bool %C, label %A, label %B
|
||
|
A:
|
||
|
call void %test(bool %C)
|
||
|
br label %X
|
||
|
B:
|
||
|
call void %test(bool %C)
|
||
|
br label %X
|
||
|
X:
|
||
|
unwind
|
||
|
}
|