diff options
author | Chris Lattner <sabre@nondot.org> | 2003-05-01 21:38:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-05-01 21:38:57 +0000 |
commit | 3d73c706e1dc8a80b11f1c66397eed5d47f225d9 (patch) | |
tree | a894b2bdb571809b1134ecf5c4785a5f9cfbf7b3 | |
parent | 215f0b77c8aac1e0d495c59e4b0985d7b97521bd (diff) |
Reduce testcase a bit
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5978 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/LowerSwitch/2003-05-01-PHIProblem.ll | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/Transforms/LowerSwitch/2003-05-01-PHIProblem.ll b/test/Transforms/LowerSwitch/2003-05-01-PHIProblem.ll index 1c8dfefbcc..914df25360 100644 --- a/test/Transforms/LowerSwitch/2003-05-01-PHIProblem.ll +++ b/test/Transforms/LowerSwitch/2003-05-01-PHIProblem.ll @@ -3,14 +3,12 @@ void %child(int %ct.1) { entry: ; No predecessors! switch uint 0, label %return [ - uint 2, label %UnifiedExitNode uint 3, label %UnifiedExitNode uint 0, label %return - uint 1, label %UnifiedExitNode ] return: ; preds = %entry, %entry - %result.0 = phi %struct.quad_struct* [ null, %entry ], [ null, %entry ] ; <%struct.quad_struct*> [#uses=0] + %result.0 = phi int* [ null, %entry ], [ null, %entry ] ; <%struct.quad_struct*> [#uses=0] br label %UnifiedExitNode UnifiedExitNode: ; preds = %entry, %return, %entry, %entry |