blob: 266609b52a54ae638a390e245aabe4941d431e21 [file] [log] [blame]
Dan Gohman3c7d3082009-09-11 18:01:28 +00001; RUN: opt < %s -simplifycfg -S | grep {br i1} | count 1
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
Tanya Lattnerb46665e2008-03-18 03:45:45 +00003define void @test(i32* %P, i32* %Q, i1 %A, i1 %B) {
4 br i1 %A, label %a, label %b
5a: ; preds = %0
6 br i1 %B, label %b, label %c
7b: ; preds = %a, %0
8 store i32 123, i32* %P
9 ret void
10c: ; preds = %a
11 ret void
Dan Gohmanf17a25c2007-07-18 16:29:46 +000012}
Tanya Lattnerb46665e2008-03-18 03:45:45 +000013