aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-05-22 20:46:30 +0000
committerChris Lattner <sabre@nondot.org>2002-05-22 20:46:30 +0000
commit277f651ce87ada73cd5a11f413cd37af57f0cf05 (patch)
treecc32df75d60f60797f7e8c32b33367f422bc8117
parent3329c3cc02b42910d99a85d3205735bdce818248 (diff)
New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2718 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Transforms/ADCE/2002-05-22-PHITest.ll13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/Transforms/ADCE/2002-05-22-PHITest.ll b/test/Transforms/ADCE/2002-05-22-PHITest.ll
new file mode 100644
index 0000000000..79bcd814f3
--- /dev/null
+++ b/test/Transforms/ADCE/2002-05-22-PHITest.ll
@@ -0,0 +1,13 @@
+; It is illegal to remove BB1 because it will mess up the PHI node!
+;
+; RUN: as < %s | opt -adce | dis | grep BB1
+
+
+int "test"(bool %C, int %A, int %B) {
+ br bool %C, label %BB1, label %BB2
+BB1:
+ br label %BB2
+BB2:
+ %R = phi int [%A, %0], [%B, %BB1]
+ ret int %R
+}