While working on the pool allocator, I noticed that basicaa is failing a scary
[oota-llvm.git] / test / ExecutionEngine / test-loop.ll
1
2
3 int %main() {
4         br label %Loop
5 Loop:
6         %I = phi int [0, %0], [%i2, %Loop]
7         %i2 = add int %I, 1
8         %C = seteq int %i2, 10
9         br bool %C, label %Out, label %Loop
10 Out:
11         ret int 0
12 }