File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
compiler/rustc_incremental/src Expand file tree Collapse file tree 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;
1818mod errors;
1919mod persist;
2020
21- use assert_dep_graph:: assert_dep_graph;
2221pub use persist:: copy_cgu_workproduct_to_incr_comp_cache_dir;
2322pub use persist:: finalize_session_directory;
2423pub 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;
12use crate :: errors;
23use rustc_data_structures:: fx:: FxIndexMap ;
34use rustc_data_structures:: sync:: join;
@@ -39,7 +40,7 @@ pub fn save_dep_graph(tcx: TyCtxt<'_>) {
3940 let dep_graph_path = dep_graph_path ( sess) ;
4041 let staging_dep_graph_path = staging_dep_graph_path ( sess) ;
4142
42- sess. time ( "assert_dep_graph" , || crate :: assert_dep_graph ( tcx) ) ;
43+ sess. time ( "assert_dep_graph" , || assert_dep_graph ( tcx) ) ;
4344 sess. time ( "check_dirty_clean" , || dirty_clean:: check_dirty_clean_annotations ( tcx) ) ;
4445
4546 if sess. opts . unstable_opts . incremental_info {
You can’t perform that action at this time.
0 commit comments