diff options
| author | Ghassan Gedeon Achi <ghassan.achi@gmail.com> | 2022-11-21 17:04:56 -0700 |
|---|---|---|
| committer | Tshepang Mbambo <tshepang@gmail.com> | 2022-11-22 07:27:49 +0200 |
| commit | f192b06fca13bbec4435541c9bf323cab8f468e5 (patch) | |
| tree | 32e58adeb5e09658f9d2376a40393322406ff737 /src/doc/rustc-dev-guide | |
| parent | 459fbf9353e18a74ecd03b5b90f3b86a3e85a2e3 (diff) | |
| download | rust-f192b06fca13bbec4435541c9bf323cab8f468e5.tar.gz rust-f192b06fca13bbec4435541c9bf323cab8f468e5.zip | |
Update path for `try_mark_green` implementation
Updates the location of the `try_mark_green` algorithm from `compiler/rustc_middle/src/dep_graph/graph.rs` to [`compiler/rustc_middle/src/dep_graph/graph.rs`](https://github.com/rust-lang/rust/blob/stable/compiler/rustc_query_system/src/dep_graph/graph.rs#L574) .
Diffstat (limited to 'src/doc/rustc-dev-guide')
| -rw-r--r-- | src/doc/rustc-dev-guide/src/queries/incremental-compilation-in-detail.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/queries/incremental-compilation-in-detail.md b/src/doc/rustc-dev-guide/src/queries/incremental-compilation-in-detail.md index dc196e490ff..5b30f227ad3 100644 --- a/src/doc/rustc-dev-guide/src/queries/incremental-compilation-in-detail.md +++ b/src/doc/rustc-dev-guide/src/queries/incremental-compilation-in-detail.md @@ -177,7 +177,7 @@ fn try_mark_green(tcx, current_node) -> bool { } // Note: The actual implementation can be found in -// compiler/rustc_middle/src/dep_graph/graph.rs +// compiler/rustc_query_system/src/dep_graph/graph.rs ``` By using red-green marking we can avoid the devastating cumulative effect of |
