about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDylan MacKenzie <ecstaticmorse@gmail.com>2020-05-04 12:49:10 -0700
committerDylan MacKenzie <ecstaticmorse@gmail.com>2020-05-04 12:50:05 -0700
commit9c93b883d186008d6ccb96993299a0dd4c90084c (patch)
tree072a1853359ca98cc1ae7d8a8f4199be26bef928
parent6318d24ad8440fa30428b405be1174478e9536e3 (diff)
downloadrust-9c93b883d186008d6ccb96993299a0dd4c90084c.tar.gz
rust-9c93b883d186008d6ccb96993299a0dd4c90084c.zip
Export dataflow impls by name
-rw-r--r--src/librustc_mir/dataflow/impls/mod.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/librustc_mir/dataflow/impls/mod.rs b/src/librustc_mir/dataflow/impls/mod.rs
index 222ae137d96..e199a174efb 100644
--- a/src/librustc_mir/dataflow/impls/mod.rs
+++ b/src/librustc_mir/dataflow/impls/mod.rs
@@ -21,14 +21,14 @@ use super::on_lookup_result_bits;
 use crate::dataflow::drop_flag_effects;
 
 mod borrowed_locals;
+pub(super) mod borrows;
 mod liveness;
 mod storage_liveness;
 
-pub use self::borrowed_locals::*;
+pub use self::borrowed_locals::{MaybeBorrowedLocals, MaybeMutBorrowedLocals};
+pub use self::borrows::Borrows;
 pub use self::liveness::MaybeLiveLocals;
-pub use self::storage_liveness::*;
-
-pub(super) mod borrows;
+pub use self::storage_liveness::{MaybeRequiresStorage, MaybeStorageLive};
 
 /// `MaybeInitializedPlaces` tracks all places that might be
 /// initialized upon reaching a particular point in the control flow