File tree 3 files changed +4
-5
lines changed
3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -107,12 +107,11 @@ The hash includes a variety of elements:
107
107
Disambiguator] ( #crate-disambiguator ) , and all CLI options marked with
108
108
` [TRACKED] ` ).
109
109
110
- See [ ` finalize_and_compute_crate_hash ` ] for where the hash is actually
111
- computed.
110
+ See [ ` compute_hir_hash ` ] for where the hash is actually computed.
112
111
113
112
[ SVH ] : https://doc.rust-lang.org/nightly/nightly-rustc/rustc_data_structures/svh/struct.Svh.html
114
113
[ incremental compilation ] : ../queries/incremental-compilation.md
115
- [ `finalize_and_compute_crate_hash ` ] : https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/hir/map/collector/ struct.NodeCollector .html#method.finalize_and_compute_crate_hash
114
+ [ `compute_hir_hash ` ] : https://doc.rust-lang.org/nightly/nightly-rustc/rustc_ast_lowering/ struct.LoweringContext .html#method.compute_hir_hash
116
115
117
116
### Stable Crate Id
118
117
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ because one must first build the new compiler with an older compiler
56
56
and then use that to build the new compiler with itself.
57
57
For development, you usually only want the ` stage1 ` compiler,
58
58
which you can build with ` ./x.py build library/std ` .
59
- See [ Building the Compiler] ( /building /how-to-build-and-run.html#building-the-compiler) .
59
+ See [ Building the Compiler] ( . /how-to-build-and-run.html#building-the-compiler) .
60
60
61
61
### Stage 3
62
62
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ why the array length in `foo<const N: usize>() -> [u8; N + 1]` can use `N`.
39
39
40
40
Without any manual adjustments, this causes us to include parameters even if
41
41
the constant doesn't use them in any way. This can cause
42
- [ some interesting errors] ( pcg-unused-substs ) and breaks some already stable code.
42
+ [ some interesting errors] [ pcg-unused-substs ] and breaks some already stable code.
43
43
44
44
To deal with this, we intend to look at the generic parameters explicitly mentioned
45
45
by the constants and then search the predicates of its parents to figure out which
You can’t perform that action at this time.
0 commit comments