diff options
-rw-r--r-- | test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll b/test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll index b02c54a1a2..d59a63518a 100644 --- a/test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll +++ b/test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll @@ -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 } |