Simplify testcase a bit more
[oota-llvm.git] / test / ExecutionEngine / 2003-05-11-PHIRegAllocBug.ll
index b02c54a1a261f197e5945f57c0db427cd7825cf9..d59a63518a56f3b8433b33bfd6a16e7ff8ad250e 100644 (file)
@@ -3,13 +3,13 @@ target pointersize = 32
 
 implementation
 
-int %main(int, sbyte**) {
+int %main() {
 entry:
-       br bool false, label %then, label %endif
+       br label %endif
 then:
        br label %endif
 endif:
-       %x.0 = phi uint [ 4, %entry ], [ 27, %then ]
-       %result.0 = phi int [ 32, %then ], [ 0, %entry ]
+       %x = phi uint [ 4, %entry ], [ 27, %then ]
+       %result = phi int [ 32, %then ], [ 0, %entry ]
        ret int 0
 }