blob: 47b507903bce234556dd4d148f455c4b4a022d74 [file] [log] [blame]
Dan Gohmanf2f6ce62009-09-11 18:01:28 +00001; RUN: opt < %s -block-placement -disable-output -print-function 2> /dev/null
Chris Lattner115e5e62004-02-11 05:00:27 +00002
Tanya Lattnerec9a35a2008-03-01 09:15:35 +00003define i32 @test() {
4 br i1 true, label %X, label %Y
Chris Lattner115e5e62004-02-11 05:00:27 +00005
Tanya Lattnerec9a35a2008-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
Chris Lattner115e5e62004-02-11 05:00:27 +000014}
Tanya Lattnerec9a35a2008-03-01 09:15:35 +000015