diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2018-07-01 17:06:00 -0400 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2018-07-12 00:38:40 -0400 |
| commit | 3c30415e96b2152ce0c1e0474d3e7be0e597abc0 (patch) | |
| tree | a713a5876a459b959652fdeb4b18bdd3018dc4df /src/librustc_data_structures | |
| parent | 28c483b9462327bcda109e327251b5800ceb3fe5 (diff) | |
| download | rust-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.rs | 1 | ||||
| -rw-r--r-- | src/librustc_data_structures/lib.rs | 1 |
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; |
