summaryrefslogtreecommitdiff
path: root/test/Transforms/InstSimplify/dead-code-removal.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Transforms/InstSimplify/dead-code-removal.ll')
-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
-}