blob: 47b507903bce234556dd4d148f455c4b4a022d74 [file] [log] [blame]
Dan Gohman3c7d3082009-09-11 18:01:28 +00001; RUN: opt < %s -block-placement -disable-output -print-function 2> /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
Tanya Lattner4c4d0b82008-03-01 09:15:35 +00003define i32 @test() {
4 br i1 true, label %X, label %Y
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005
Tanya Lattner4c4d0b82008-03-01 09:15:35 +00006A: ; preds = %Y, %X
7 ret i32 0
8
9X: ; preds = %0
10 br label %A
11
12Y: ; preds = %0
13 br label %A
Dan Gohmanf17a25c2007-07-18 16:29:46 +000014}
Tanya Lattner4c4d0b82008-03-01 09:15:35 +000015