blob: 649319b88f4775b5c32546f92347d2613097e736 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc
2; RUN: lli %t.bc > /dev/null
3
4; test unconditional branch
5int %main() {
6 br label %Test
7Test:
8 %X = seteq int 0, 4
9 br bool %X, label %Test, label %Label
10Label:
11 ret int 0
12}