rename C files to end with .c
[oota-llvm.git] / test / ExecutionEngine / 2003-05-11-PHIRegAllocBug.ll
1 ; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc
2 ; RUN: lli %t.bc > /dev/null
3
4 target endian = little
5 target pointersize = 32
6
7 implementation
8
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
18 }