Add tests for cast of long to bool
[oota-llvm.git] / test / ExecutionEngine / 2003-05-11-PHIRegAllocBug.ll
1 target endian = little
2 target pointersize = 32
3
4 implementation
5
6 int %main() {
7 entry:
8         br label %endif
9 then:
10         br label %endif
11 endif:
12         %x = phi uint [ 4, %entry ], [ 27, %then ]
13         %result = phi int [ 32, %then ], [ 0, %entry ]
14         ret int 0
15 }