summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-09-24 16:02:44 +0000
committerChris Lattner <sabre@nondot.org>2002-09-24 16:02:44 +0000
commit710e9a5c657e18536ad03398771d7f7637682f2d (patch)
treedc072889c650b35f3f7a742e3d8afd62c5470262 /llvm
parentc05ad968031e87e3642b67f3eacb8b87777a88cf (diff)
downloadbcm5719-llvm-710e9a5c657e18536ad03398771d7f7637682f2d.tar.gz
bcm5719-llvm-710e9a5c657e18536ad03398771d7f7637682f2d.zip
New testcase that causes SimplifyCFG to assert out.
llvm-svn: 3912
Diffstat (limited to 'llvm')
-rw-r--r--llvm/test/Regression/Transforms/SimplifyCFG/2002-09-24-PHIAssertion.ll12
1 files changed, 12 insertions, 0 deletions
diff --git a/llvm/test/Regression/Transforms/SimplifyCFG/2002-09-24-PHIAssertion.ll b/llvm/test/Regression/Transforms/SimplifyCFG/2002-09-24-PHIAssertion.ll
new file mode 100644
index 00000000000..94d632f8f83
--- /dev/null
+++ b/llvm/test/Regression/Transforms/SimplifyCFG/2002-09-24-PHIAssertion.ll
@@ -0,0 +1,12 @@
+; RUN: as < %s | opt -simplifycfg
+
+int %test(int %A, int %B, bool %cond) {
+J:
+ %C = add int %A, 12
+ br bool %cond, label %L, label %L
+L:
+ %Q = phi int [%C, %J], [%C, %J] ; PHI node is obviously redundant
+ %D = add int %C, %B
+ %E = add int %Q, %D
+ ret int %E
+}
OpenPOWER on IntegriCloud