summaryrefslogtreecommitdiff
path: root/test/Transforms/InstSimplify
diff options
context:
space:
mode:
authorGerolf Hoflehner <ghoflehner@apple.com>2014-04-26 02:03:17 +0000
committerGerolf Hoflehner <ghoflehner@apple.com>2014-04-26 02:03:17 +0000
commit9d4048578c38bac5f23125df8786bca02c93728b (patch)
tree2ffb865f9bc114789e85ae701603d7a8370333ba /test/Transforms/InstSimplify
parent4c9277bb9fc1399aa0c845c870447ae83cdb2cb1 (diff)
downloadllvm-9d4048578c38bac5f23125df8786bca02c93728b.tar.gz
llvm-9d4048578c38bac5f23125df8786bca02c93728b.tar.bz2
llvm-9d4048578c38bac5f23125df8786bca02c93728b.tar.xz
Revert commit r207302 since build failures
have been reported. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207303 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstSimplify')
-rw-r--r--test/Transforms/InstSimplify/dead-code-removal.ll15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/Transforms/InstSimplify/dead-code-removal.ll b/test/Transforms/InstSimplify/dead-code-removal.ll
deleted file mode 100644
index 89c9d9cea2..0000000000
--- a/test/Transforms/InstSimplify/dead-code-removal.ll
+++ /dev/null
@@ -1,15 +0,0 @@
-; 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
-}