summaryrefslogtreecommitdiff
path: root/test/Transforms/InstSimplify
diff options
context:
space:
mode:
authorGerolf Hoflehner <ghoflehner@apple.com>2014-04-26 01:19:16 +0000
committerGerolf Hoflehner <ghoflehner@apple.com>2014-04-26 01:19:16 +0000
commit4c9277bb9fc1399aa0c845c870447ae83cdb2cb1 (patch)
treeb723dacc83eb65812a1bb56837260d4b1bf2f292 /test/Transforms/InstSimplify
parent9e93e47b7f196893b5779090897210d750aa1c6b (diff)
downloadllvm-4c9277bb9fc1399aa0c845c870447ae83cdb2cb1.tar.gz
llvm-4c9277bb9fc1399aa0c845c870447ae83cdb2cb1.tar.bz2
llvm-4c9277bb9fc1399aa0c845c870447ae83cdb2cb1.tar.xz
RecursivelyDeleteTriviallyDeadInstructions() could remove
more than 1 instruction. The caller need to be aware of this and adjust instruction iterators accordingly. rdar://16679376 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207302 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstSimplify')
-rw-r--r--test/Transforms/InstSimplify/dead-code-removal.ll15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/Transforms/InstSimplify/dead-code-removal.ll b/test/Transforms/InstSimplify/dead-code-removal.ll
new file mode 100644
index 0000000000..89c9d9cea2
--- /dev/null
+++ b/test/Transforms/InstSimplify/dead-code-removal.ll
@@ -0,0 +1,15 @@
+; RUN: opts -instsimplify -S < %s | FileCheck %s
+
+define void @foo() nounwind {
+ br i1 undef, label %1, label %4
+
+; <label>:1 ; preds = %1, %0
+; CHECK-NOT: phi
+; CHECK-NOT: sub
+ %2 = phi i32 [ %3, %1 ], [ undef, %0 ]
+ %3 = sub i32 0, undef
+ br label %1
+
+; <label>:4 ; preds = %0
+ ret void
+}