blob: e544eed87ca2751c6980836cc68d871613bb2593 [file] [log] [blame]
Dan Gohman512399d2007-11-27 00:50:57 +00001; RUN: llvm-upgrade < %s | not llvm-as -f |& grep {not verify as correct}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002; PR1042
3
4int %foo() {
5 br bool false, label %L1, label %L2
6L1:
7 %A = invoke int %foo() to label %L unwind label %L
8
9L2:
10 br label %L
11L:
12 ret int %A
13}