File tree 2 files changed +5
-5
lines changed
rustc_query_system/src/dep_graph
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1109,7 +1109,7 @@ pub(super) struct CurrentDepGraph<K: DepKind> {
1109
1109
forbidden_edge : Option < EdgeFilter < K > > ,
1110
1110
1111
1111
/// Used to verify the absence of hash collisions among DepNodes.
1112
- /// This field is only `Some` if the `-Z incremental_verify_depnodes ` option is present.
1112
+ /// This field is only `Some` if the `-Z incremental_verify_ich ` option is present.
1113
1113
#[ cfg( debug_assertions) ]
1114
1114
seen_dep_nodes : Option < Lock < FxHashSet < DepNode < K > > > > ,
1115
1115
@@ -1195,7 +1195,7 @@ impl<K: DepKind> CurrentDepGraph<K> {
1195
1195
#[ cfg( debug_assertions) ]
1196
1196
fingerprints : Lock :: new ( IndexVec :: from_elem_n ( None , new_node_count_estimate) ) ,
1197
1197
#[ cfg( debug_assertions) ]
1198
- seen_dep_nodes : session. opts . unstable_opts . incremental_verify_depnodes . then ( || {
1198
+ seen_dep_nodes : session. opts . unstable_opts . incremental_verify_ich . then ( || {
1199
1199
Lock :: new ( FxHashSet :: with_capacity_and_hasher (
1200
1200
new_node_count_estimate,
1201
1201
Default :: default ( ) ,
Original file line number Diff line number Diff line change @@ -1483,10 +1483,10 @@ options! {
1483
1483
#[ rustc_lint_opt_deny_field_access( "use `Session::incremental_relative_spans` instead of this field" ) ]
1484
1484
incremental_relative_spans: bool = ( false , parse_bool, [ TRACKED ] ,
1485
1485
"hash spans relative to their parent item for incr. comp. (default: no)" ) ,
1486
- incremental_verify_depnodes: bool = ( false , parse_bool, [ UNTRACKED ] ,
1487
- "verify incr. comp. dep-nodes for hash collisions (default: no)" ) ,
1488
1486
incremental_verify_ich: bool = ( false , parse_bool, [ UNTRACKED ] ,
1489
- "verify incr. comp. hashes of green query instances (default: no)" ) ,
1487
+ "verify extended properties for incr. comp. (default: no):
1488
+ - hashes of green query instances;
1489
+ - hash collisions when creating dep-nodes." ) ,
1490
1490
inline_in_all_cgus: Option <bool > = ( None , parse_opt_bool, [ TRACKED ] ,
1491
1491
"control whether `#[inline]` functions are in all CGUs" ) ,
1492
1492
inline_llvm: bool = ( true , parse_bool, [ TRACKED ] ,
You can’t perform that action at this time.
0 commit comments