Skip to content

Commit 9c5e952

Browse files
committed
---
yaml --- r: 272107 b: refs/heads/master c: 82f4361 h: refs/heads/master i: 272105: e4e17b2 272103: 7b41ca8
1 parent fa5a37a commit 9c5e952

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 50a40e1c37761acc404d4b95e0448d7a01b6e38b
2+
refs/heads/master: 82f43611551c2f44710dd949f6418eda8df93ca9
33
refs/heads/snap-stage3: 235d77457d80b549dad3ac36d94f235208a1eafb
44
refs/heads/try: 49312a405e14a449b98fe0056b12a40ac128be4a
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

trunk/src/librustc_incremental/persist/load.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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
}

trunk/src/librustc_incremental/persist/save.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)