blob: 73bd9756c1fb79a934d72c559e1c4346a5e11f1e [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | opt -simplifycfg | llvm-dis | \
2; RUN: not grep {br label}
3
4void %test(bool %C) {
5 br bool %C, label %A, label %B
6A:
7 call void %test(bool %C)
8 br label %X
9B:
10 call void %test(bool %C)
11 br label %X
12X:
13 unwind
14}