about summary refs log tree commit diff
path: root/src/librustc_data_structures
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2018-07-01 17:06:00 -0400
committerNiko Matsakis <niko@alum.mit.edu>2018-07-12 00:38:40 -0400
commit3c30415e96b2152ce0c1e0474d3e7be0e597abc0 (patch)
treea713a5876a459b959652fdeb4b18bdd3018dc4df /src/librustc_data_structures
parent28c483b9462327bcda109e327251b5800ceb3fe5 (diff)
downloadrust-3c30415e96b2152ce0c1e0474d3e7be0e597abc0.tar.gz
rust-3c30415e96b2152ce0c1e0474d3e7be0e597abc0.zip
rename `graph` to `control_flow_graph::implementation`
Diffstat (limited to 'src/librustc_data_structures')
-rw-r--r--src/librustc_data_structures/control_flow_graph/implementation/mod.rs (renamed from src/librustc_data_structures/graph/mod.rs)0
-rw-r--r--src/librustc_data_structures/control_flow_graph/implementation/tests.rs (renamed from src/librustc_data_structures/graph/tests.rs)0
-rw-r--r--src/librustc_data_structures/control_flow_graph/mod.rs1
-rw-r--r--src/librustc_data_structures/lib.rs1
4 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_data_structures/graph/mod.rs b/src/librustc_data_structures/control_flow_graph/implementation/mod.rs
index e2b393071ff..e2b393071ff 100644
--- a/src/librustc_data_structures/graph/mod.rs
+++ b/src/librustc_data_structures/control_flow_graph/implementation/mod.rs
diff --git a/src/librustc_data_structures/graph/tests.rs b/src/librustc_data_structures/control_flow_graph/implementation/tests.rs
index 007704357af..007704357af 100644
--- a/src/librustc_data_structures/graph/tests.rs
+++ b/src/librustc_data_structures/control_flow_graph/implementation/tests.rs
diff --git a/src/librustc_data_structures/control_flow_graph/mod.rs b/src/librustc_data_structures/control_flow_graph/mod.rs
index cfb4b07b505..bd933e57b39 100644
--- a/src/librustc_data_structures/control_flow_graph/mod.rs
+++ b/src/librustc_data_structures/control_flow_graph/mod.rs
@@ -11,6 +11,7 @@
 use super::indexed_vec::Idx;
 
 pub mod dominators;
+pub mod implementation;
 pub mod iterate;
 mod reference;
 
diff --git a/src/librustc_data_structures/lib.rs b/src/librustc_data_structures/lib.rs
index e4d0bc596cb..59b7b430083 100644
--- a/src/librustc_data_structures/lib.rs
+++ b/src/librustc_data_structures/lib.rs
@@ -59,7 +59,6 @@ pub mod small_vec;
 pub mod base_n;
 pub mod bitslice;
 pub mod bitvec;
-pub mod graph;
 pub mod indexed_set;
 pub mod indexed_vec;
 pub mod obligation_forest;