Inliner pass header file was moved.
[llvm-complete.git] / test / ExecutionEngine / 2003-01-04-PhiTest.ll
blob45af8300a642e2908481bf1c171cc83b56f2791a
1 ; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc
2 ; RUN: lli %t.bc > /dev/null
4 int %main() {
5         br label %Loop
6 Loop:
7         %X = phi int [0, %0], [1, %Loop]
8         br bool true, label %Out, label %Loop
9 Out:
10         ret int %X