blob: b19a27dea048d5155d15e44467afd2bbc7fdbda9 [file] [log] [blame]
Dan Gohman3c7d3082009-09-11 18:01:28 +00001; RUN: opt < %s -simplifycfg -S | \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002; RUN: not grep {br label}
3
Tanya Lattnerb46665e2008-03-18 03:45:45 +00004define void @test(i1 %C) {
5 br i1 %C, label %A, label %B
6A: ; preds = %0
7 call void @test( i1 %C )
8 br label %X
9B: ; preds = %0
10 call void @test( i1 %C )
11 br label %X
12X: ; preds = %B, %A
13 unwind
Dan Gohmanf17a25c2007-07-18 16:29:46 +000014}
Tanya Lattnerb46665e2008-03-18 03:45:45 +000015