Use InstrSlots::NUM rather than pre-dividing by four. Also, mark this const.
[oota-llvm.git] / test / ExecutionEngine / 2003-05-11-PHIRegAllocBug.ll
index d59a63518a56f3b8433b33bfd6a16e7ff8ad250e..7b48f579af0122278881575f00b17dbdd39a0f44 100644 (file)
@@ -1,15 +1,16 @@
-target endian = little
-target pointersize = 32
+; RUN: llvm-as %s -f -o %t.bc
+; RUN: lli %t.bc > /dev/null
 
-implementation
+target datalayout = "e-p:32:32"
 
-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
 }
+