File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
src/librustc_incremental/persist Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ pub fn load_dep_graph<'tcx>(tcx: &ty::TyCtxt<'tcx>) {
4141 let _ignore = tcx. dep_graph . in_ignore ( ) ;
4242
4343 if let Some ( dep_graph) = dep_graph_path ( tcx) {
44+ // FIXME(#32754) lock file?
4445 load_dep_graph_if_exists ( tcx, & dep_graph) ;
4546 dirty_clean:: check_dirty_clean_annotations ( tcx) ;
4647 }
Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ pub fn save_dep_graph<'tcx>(tcx: &ty::TyCtxt<'tcx>) {
2424 let _ignore = tcx. dep_graph . in_ignore ( ) ;
2525
2626 if let Some ( dep_graph) = dep_graph_path ( tcx) {
27+ // FIXME(#32754) lock file?
28+
2729 // delete the old dep-graph, if any
2830 if dep_graph. exists ( ) {
2931 match fs:: remove_file ( & dep_graph) {
You can’t perform that action at this time.
0 commit comments