about summary refs log tree commit diff
path: root/src/librustc_data_structures/control_flow_graph/mod.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-08-21 10:41:56 -0700
committerAlex Crichton <alex@alexcrichton.com>2017-08-21 10:41:56 -0700
commitb31998ec93c1738642fd1557b419fa651bb6b543 (patch)
treec9461144895ec8d0f937fd16b7f5fbf2942e6706 /src/librustc_data_structures/control_flow_graph/mod.rs
parentbf3ebcc98788d805f96b171362d272c93e0a50a0 (diff)
parent757b7ac2abd69d97ba196b76f0bbf78c377aaea9 (diff)
downloadrust-b31998ec93c1738642fd1557b419fa651bb6b543.tar.gz
rust-b31998ec93c1738642fd1557b419fa651bb6b543.zip
Merge remote-tracking branch 'origin/master' into gen
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;