llvm-6502/test/Transforms/SimplifyCFG/BrUnwind.ll
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
}