Simplify testcase a bit more
authorChris Lattner <sabre@nondot.org>
Mon, 12 May 2003 02:31:48 +0000 (02:31 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 12 May 2003 02:31:48 +0000 (02:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6107 91177308-0d34-0410-b5e6-96231b3b80d8

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
 }