File tree 2 files changed +4
-5
lines changed
rustc_query_system/src/dep_graph
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -1091,7 +1091,7 @@ pub(super) struct CurrentDepGraph<D: Deps> {
1091
1091
forbidden_edge : Option < EdgeFilter > ,
1092
1092
1093
1093
/// Used to verify the absence of hash collisions among DepNodes.
1094
- /// This field is only `Some` if the `-Z incremental_verify_depnodes ` option is present.
1094
+ /// This field is only `Some` if the `-Z incremental_verify_ich ` option is present.
1095
1095
#[ cfg( debug_assertions) ]
1096
1096
seen_dep_nodes : Option < Lock < FxHashSet < DepNode > > > ,
1097
1097
@@ -1164,7 +1164,7 @@ impl<D: Deps> CurrentDepGraph<D> {
1164
1164
#[ cfg( debug_assertions) ]
1165
1165
fingerprints : Lock :: new ( IndexVec :: from_elem_n ( None , new_node_count_estimate) ) ,
1166
1166
#[ cfg( debug_assertions) ]
1167
- seen_dep_nodes : session. opts . unstable_opts . incremental_verify_depnodes . then ( || {
1167
+ seen_dep_nodes : session. opts . unstable_opts . incremental_verify_ich . then ( || {
1168
1168
Lock :: new ( FxHashSet :: with_capacity_and_hasher (
1169
1169
new_node_count_estimate,
1170
1170
Default :: default ( ) ,
Original file line number Diff line number Diff line change @@ -1759,12 +1759,11 @@ options! {
1759
1759
incremental_info: bool = ( false , parse_bool, [ UNTRACKED ] ,
1760
1760
"print high-level information about incremental reuse (or the lack thereof) \
1761
1761
(default: no)") ,
1762
- incremental_verify_depnodes: bool = ( false , parse_bool, [ UNTRACKED ] ,
1763
- "verify incr. comp. dep-nodes for hash collisions (default: no)" ) ,
1764
1762
incremental_verify_ich: bool = ( false , parse_bool, [ UNTRACKED ] ,
1765
1763
"verify extended properties for incr. comp. (default: no):
1766
1764
- hashes of green query instances
1767
- - hash collisions of query keys" ) ,
1765
+ - hash collisions of query keys
1766
+ - hash collisions when creating dep-nodes" ) ,
1768
1767
inline_in_all_cgus: Option <bool > = ( None , parse_opt_bool, [ TRACKED ] ,
1769
1768
"control whether `#[inline]` functions are in all CGUs" ) ,
1770
1769
inline_llvm: bool = ( true , parse_bool, [ TRACKED ] ,
You can’t perform that action at this time.
0 commit comments