blob: f3b8e3625a66287c28d1fc91f74d2082ab1c36b1 [file] [log] [blame]
Dan Gohman1b4c27772009-09-08 16:50:01 +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