hanchenye-llvm-project/llvm/test/Transforms/SimplifyCFG/BrUnwind.ll

15 lines
248 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | opt -simplifycfg | llvm-dis | \
; RUN: 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
}