1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-14 15:33:34 +00:00
2004-07-20 01:17:19 +00:00

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
}