While working on the pool allocator, I noticed that basicaa is failing a scary
[oota-llvm.git] / test / ExecutionEngine / test-branch.ll
1 ; test unconditional branch
2 int %main() {
3         br label %Test
4 Test:
5         %X = seteq int 0, 4
6         br bool %X, label %Test, label %Label
7 Label:
8         ret int 0
9 }