about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDylan MacKenzie <ecstaticmorse@gmail.com>2019-09-18 07:35:44 -0700
committerDylan MacKenzie <ecstaticmorse@gmail.com>2019-09-18 07:35:44 -0700
commit08aff1afe5edb5c31ebb2b1bcdf6025fa323a8fe (patch)
tree4bc6e353501bda0a9cba2ae2f7ed6f8cf816e11d
parent19bf0f4c905aa17fb9f975432c1d32e210e2deb8 (diff)
downloadrust-08aff1afe5edb5c31ebb2b1bcdf6025fa323a8fe.tar.gz
rust-08aff1afe5edb5c31ebb2b1bcdf6025fa323a8fe.zip
Publish `rustc_mir::dataflow` and remove `#[allow(unused)]`
-rw-r--r--src/librustc_mir/dataflow/generic.rs5
-rw-r--r--src/librustc_mir/lib.rs2
2 files changed, 1 insertions, 6 deletions
diff --git a/src/librustc_mir/dataflow/generic.rs b/src/librustc_mir/dataflow/generic.rs
index 901467d52dc..a4b81968d72 100644
--- a/src/librustc_mir/dataflow/generic.rs
+++ b/src/librustc_mir/dataflow/generic.rs
@@ -1,5 +1,3 @@
-#![allow(unused)]
-
 use std::cmp::Ordering;
 use std::ops;
 
@@ -209,7 +207,6 @@ where
     }
 
     /// Updates the cursor to hold the dataflow state immediately before `target`.
-    #[allow(unused)]
     pub fn seek_before(&mut self, target: Location) {
         assert!(target <= self.body.terminator_loc(target.block));
 
@@ -228,7 +225,6 @@ where
     /// If `target` is a `Call` terminator, `apply_call_return_effect` will not be called. See
     /// `seek_after_assume_call_returns` if you wish to observe the dataflow state upon a
     /// successful return.
-    #[allow(unused)]
     pub fn seek_after(&mut self, target: Location) {
         assert!(target <= self.body.terminator_loc(target.block));
 
@@ -243,7 +239,6 @@ where
 
     /// Equivalent to `seek_after`, but also calls `apply_call_return_effect` if `target` is a
     /// `Call` terminator whose callee is convergent.
-    #[allow(unused)]
     pub fn seek_after_assume_call_returns(&mut self, target: Location) {
         assert!(target <= self.body.terminator_loc(target.block));
 
diff --git a/src/librustc_mir/lib.rs b/src/librustc_mir/lib.rs
index c4738d846be..091dfbea5a8 100644
--- a/src/librustc_mir/lib.rs
+++ b/src/librustc_mir/lib.rs
@@ -36,7 +36,7 @@ pub mod error_codes;
 
 mod borrow_check;
 mod build;
-mod dataflow;
+pub mod dataflow;
 mod hair;
 mod lints;
 mod shim;