summaryrefslogtreecommitdiffstats
path: root/src/test/mir-opt/dataflow-const-prop/ref_without_sb.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/mir-opt/dataflow-const-prop/ref_without_sb.rs')
-rw-r--r--src/test/mir-opt/dataflow-const-prop/ref_without_sb.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/test/mir-opt/dataflow-const-prop/ref_without_sb.rs b/src/test/mir-opt/dataflow-const-prop/ref_without_sb.rs
deleted file mode 100644
index 2fd480b09..000000000
--- a/src/test/mir-opt/dataflow-const-prop/ref_without_sb.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-// unit-test: DataflowConstProp
-
-#[inline(never)]
-fn escape<T>(x: &T) {}
-
-#[inline(never)]
-fn some_function() {}
-
-// EMIT_MIR ref_without_sb.main.DataflowConstProp.diff
-fn main() {
- let mut a = 0;
- escape(&a);
- a = 1;
- some_function();
- // This should currently not be propagated.
- let b = a;
-}