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