about summary refs log tree commit diff
path: root/src/librustc_data_structures/control_flow_graph/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/librustc_data_structures/control_flow_graph/mod.rs')
-rw-r--r--src/librustc_data_structures/control_flow_graph/mod.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/librustc_data_structures/control_flow_graph/mod.rs b/src/librustc_data_structures/control_flow_graph/mod.rs
index eb6839df627..7bf776675c6 100644
--- a/src/librustc_data_structures/control_flow_graph/mod.rs
+++ b/src/librustc_data_structures/control_flow_graph/mod.rs
@@ -9,13 +9,10 @@
 // except according to those terms.
 
 use super::indexed_vec::Idx;
-pub use std::slice::Iter;
 
 pub mod dominators;
 pub mod iterate;
-pub mod reachable;
 mod reference;
-pub mod transpose;
 
 #[cfg(test)]
 mod test;