Inliner pass header file was moved.
[llvm-complete.git] / test / ExecutionEngine / 2003-05-11-PHIRegAllocBug.ll
blob1d9ba77145b54b704ff3e2e38339a1435d70138b
1 ; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc
2 ; RUN: lli %t.bc > /dev/null
4 target endian = little
5 target pointersize = 32
7 implementation
9 int %main() {
10 entry:
11         br label %endif
12 then:
13         br label %endif
14 endif:
15         %x = phi uint [ 4, %entry ], [ 27, %then ]
16         %result = phi int [ 32, %then ], [ 0, %entry ]
17         ret int 0