From bbd5839a97cdd1b1f9fda52e9a807982cc1deac1 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 12 May 2003 02:31:48 +0000 Subject: [PATCH] Simplify testcase a bit more git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6107 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll b/test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll index b02c54a1a26..d59a63518a5 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 } -- 2.34.1