File tree 2 files changed +2
-2
lines changed
compiler/rustc_incremental/src
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ mod assert_dep_graph;
18
18
mod errors;
19
19
mod persist;
20
20
21
- use assert_dep_graph:: assert_dep_graph;
22
21
pub use persist:: copy_cgu_workproduct_to_incr_comp_cache_dir;
23
22
pub use persist:: finalize_session_directory;
24
23
pub use persist:: in_incr_comp_dir;
Original file line number Diff line number Diff line change
1
+ use crate :: assert_dep_graph:: assert_dep_graph;
1
2
use crate :: errors;
2
3
use rustc_data_structures:: fx:: FxIndexMap ;
3
4
use rustc_data_structures:: sync:: join;
@@ -39,7 +40,7 @@ pub fn save_dep_graph(tcx: TyCtxt<'_>) {
39
40
let dep_graph_path = dep_graph_path ( sess) ;
40
41
let staging_dep_graph_path = staging_dep_graph_path ( sess) ;
41
42
42
- sess. time ( "assert_dep_graph" , || crate :: assert_dep_graph ( tcx) ) ;
43
+ sess. time ( "assert_dep_graph" , || assert_dep_graph ( tcx) ) ;
43
44
sess. time ( "check_dirty_clean" , || dirty_clean:: check_dirty_clean_annotations ( tcx) ) ;
44
45
45
46
if sess. opts . unstable_opts . incremental_info {
You can’t perform that action at this time.
0 commit comments