blob: 3f08ecc4d5ccae3d9f904eb57c17588193e4daad [file] [log] [blame]
Tanya Lattnere9789ef2004-11-06 23:32:43 +00001; RUN: llvm-as -f %s -o %t.bc
2; RUN: lli %t.bc > /dev/null
3
Chris Lattner1405ec02002-10-25 23:01:51 +00004; test unconditional branch
Misha Brukmana5e7f352003-06-06 07:58:29 +00005int %main() {
Chris Lattner1405ec02002-10-25 23:01:51 +00006 br label %Test
7Test:
Chris Lattner8b88e8f2002-12-13 05:28:50 +00008 %X = seteq int 0, 4
Chris Lattner69a09e52002-11-21 23:30:08 +00009 br bool %X, label %Test, label %Label
10Label:
Misha Brukmana5e7f352003-06-06 07:58:29 +000011 ret int 0
Chris Lattner1405ec02002-10-25 23:01:51 +000012}