Return 'int 0' instead of 'void' so that the test can be seen as successful.
[oota-llvm.git] / test / ExecutionEngine / 2003-01-04-PhiTest.ll
1 ; RUN: as < %s | lli -force-interpreter=false
2
3 int %main() {
4         br label %Loop
5 Loop:
6         %X = phi int [0, %0], [1, %Loop]
7         br bool true, label %Out, label %Loop
8 Out:
9         ret int %X
10 }