blob: dd8db5465f0ba38407f49836e6ac9583246ddc3e [file] [log] [blame]
Dan Gohman0d4bbf22009-08-25 15:38:29 +00001; RUN: llvm-as %s -o %t.bc
Tanya Lattner2acf9b02004-11-06 23:32:43 +00002; RUN: lli %t.bc > /dev/null
3
Chris Lattnera8179522002-10-25 23:01:51 +00004; test unconditional branch
Tanya Lattner5f4b3552008-03-10 07:21:50 +00005define i32 @main() {
Chris Lattnera8179522002-10-25 23:01:51 +00006 br label %Test
Tanya Lattner5f4b3552008-03-10 07:21:50 +00007Test: ; preds = %Test, %0
8 %X = icmp eq i32 0, 4 ; <i1> [#uses=1]
9 br i1 %X, label %Test, label %Label
10Label: ; preds = %Test
11 ret i32 0
Chris Lattnera8179522002-10-25 23:01:51 +000012}
Tanya Lattner5f4b3552008-03-10 07:21:50 +000013