File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed
trunk/src/librustc_incremental/persist Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 50a40e1c37761acc404d4b95e0448d7a01b6e38b
2
+ refs/heads/master: 82f43611551c2f44710dd949f6418eda8df93ca9
3
3
refs/heads/snap-stage3: 235d77457d80b549dad3ac36d94f235208a1eafb
4
4
refs/heads/try: 49312a405e14a449b98fe0056b12a40ac128be4a
5
5
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ pub fn load_dep_graph<'tcx>(tcx: &ty::TyCtxt<'tcx>) {
41
41
let _ignore = tcx. dep_graph . in_ignore ( ) ;
42
42
43
43
if let Some ( dep_graph) = dep_graph_path ( tcx) {
44
+ // FIXME(#32754) lock file?
44
45
load_dep_graph_if_exists ( tcx, & dep_graph) ;
45
46
dirty_clean:: check_dirty_clean_annotations ( tcx) ;
46
47
}
Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ pub fn save_dep_graph<'tcx>(tcx: &ty::TyCtxt<'tcx>) {
24
24
let _ignore = tcx. dep_graph . in_ignore ( ) ;
25
25
26
26
if let Some ( dep_graph) = dep_graph_path ( tcx) {
27
+ // FIXME(#32754) lock file?
28
+
27
29
// delete the old dep-graph, if any
28
30
if dep_graph. exists ( ) {
29
31
match fs:: remove_file ( & dep_graph) {
You can’t perform that action at this time.
0 commit comments