aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/ValuePropagation/phi.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Transforms/ValuePropagation/phi.ll')
-rw-r--r--test/Transforms/ValuePropagation/phi.ll17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/Transforms/ValuePropagation/phi.ll b/test/Transforms/ValuePropagation/phi.ll
deleted file mode 100644
index f150876..0000000
--- a/test/Transforms/ValuePropagation/phi.ll
+++ /dev/null
@@ -1,17 +0,0 @@
-; RUN: opt < %s -value-propagation -S | FileCheck %s
-; PR2581
-
-; CHECK: @run
-define i32 @run(i1 %C) nounwind {
- br i1 %C, label %exit, label %body
-
-body: ; preds = %0
-; CHECK-NOT: select
- %A = select i1 %C, i32 10, i32 11 ; <i32> [#uses=1]
-; CHECK: ret i32 11
- ret i32 %A
-
-exit: ; preds = %0
-; CHECK: ret i32 10
- ret i32 10
-} \ No newline at end of file