X86: Lower a select directly to a setcc_carry if possible.
[oota-llvm.git] / test / ExecutionEngine / 2003-05-11-PHIRegAllocBug.ll
index 1d9ba77145b54b704ff3e2e38339a1435d70138b..bcdb11468dcaaa520a56ef45d381bf4bf3765aa0 100644 (file)
@@ -1,18 +1,15 @@
-; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc
-; RUN: lli %t.bc > /dev/null
+; RUN: lli %s > /dev/null
 
-target endian = little
-target pointersize = 32
+target datalayout = "e-p:32:32"
 
-implementation
-
-int %main() {
+define i32 @main() {
 entry:
        br label %endif
-then:
+then:          ; No predecessors!
        br label %endif
-endif:
-       %x = phi uint [ 4, %entry ], [ 27, %then ]
-       %result = phi int [ 32, %then ], [ 0, %entry ]
-       ret int 0
+endif:         ; preds = %then, %entry
+       %x = phi i32 [ 4, %entry ], [ 27, %then ]               ; <i32> [#uses=0]
+       %result = phi i32 [ 32, %then ], [ 0, %entry ]          ; <i32> [#uses=0]
+       ret i32 0
 }
+