diff options
| author | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2018-06-13 16:44:43 +0300 |
|---|---|---|
| committer | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2018-06-14 18:05:12 +0300 |
| commit | 5a5c7ded0d48df010d0a4f5fef8a85dfeae68c16 (patch) | |
| tree | 80fdee536d045a59bc4d0a5bb599fc1cd60eb074 /src/librustc_incremental | |
| parent | 7f20af002e33a3f38b51a7e3f9c63bcae4214613 (diff) | |
rustc: rename ty::maps to ty::query.
Diffstat (limited to 'src/librustc_incremental')
| -rw-r--r-- | src/librustc_incremental/persist/dirty_clean.rs | 2 | ||||
| -rw-r--r-- | src/librustc_incremental/persist/load.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_incremental/persist/dirty_clean.rs b/src/librustc_incremental/persist/dirty_clean.rs index 1549ef5e928..eeb87e41757 100644 --- a/src/librustc_incremental/persist/dirty_clean.rs +++ b/src/librustc_incremental/persist/dirty_clean.rs @@ -385,7 +385,7 @@ impl<'a, 'tcx> DirtyCleanVisitor<'a, 'tcx> { // michaelwoerister and vitiral came up with a possible solution, // to just do this before every query // ``` - // ::rustc::ty::maps::plumbing::force_from_dep_node(tcx, dep_node) + // ::rustc::ty::query::plumbing::force_from_dep_node(tcx, dep_node) // ``` // // However, this did not seem to work effectively and more bugs were hit. diff --git a/src/librustc_incremental/persist/load.rs b/src/librustc_incremental/persist/load.rs index f846759545e..9ee3b216dcf 100644 --- a/src/librustc_incremental/persist/load.rs +++ b/src/librustc_incremental/persist/load.rs @@ -14,7 +14,7 @@ use rustc_data_structures::fx::FxHashMap; use rustc::dep_graph::{PreviousDepGraph, SerializedDepGraph, WorkProduct, WorkProductId}; use rustc::session::Session; use rustc::ty::TyCtxt; -use rustc::ty::maps::OnDiskCache; +use rustc::ty::query::OnDiskCache; use rustc::util::common::time_ext; use rustc_serialize::Decodable as RustcDecodable; use rustc_serialize::opaque::Decoder; |
