File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
rustc_query_system/src/dep_graph Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -1081,7 +1081,7 @@ pub(super) struct CurrentDepGraph<D: Deps> {
1081
1081
forbidden_edge : Option < EdgeFilter > ,
1082
1082
1083
1083
/// Used to verify the absence of hash collisions among DepNodes.
1084
- /// This field is only `Some` if the `-Z incremental_verify_depnodes ` option is present.
1084
+ /// This field is only `Some` if the `-Z incremental_verify_ich ` option is present.
1085
1085
#[ cfg( debug_assertions) ]
1086
1086
seen_dep_nodes : Option < Lock < FxHashSet < DepNode > > > ,
1087
1087
@@ -1154,7 +1154,7 @@ impl<D: Deps> CurrentDepGraph<D> {
1154
1154
#[ cfg( debug_assertions) ]
1155
1155
fingerprints : Lock :: new ( IndexVec :: from_elem_n ( None , new_node_count_estimate) ) ,
1156
1156
#[ cfg( debug_assertions) ]
1157
- seen_dep_nodes : session. opts . unstable_opts . incremental_verify_depnodes . then ( || {
1157
+ seen_dep_nodes : session. opts . unstable_opts . incremental_verify_ich . then ( || {
1158
1158
Lock :: new ( FxHashSet :: with_capacity_and_hasher (
1159
1159
new_node_count_estimate,
1160
1160
Default :: default ( ) ,
Original file line number Diff line number Diff line change @@ -1820,12 +1820,11 @@ options! {
1820
1820
incremental_info: bool = ( false , parse_bool, [ UNTRACKED ] ,
1821
1821
"print high-level information about incremental reuse (or the lack thereof) \
1822
1822
(default: no)") ,
1823
- incremental_verify_depnodes: bool = ( false , parse_bool, [ UNTRACKED ] ,
1824
- "verify incr. comp. dep-nodes for hash collisions (default: no)" ) ,
1825
1823
incremental_verify_ich: bool = ( false , parse_bool, [ UNTRACKED ] ,
1826
1824
"verify extended properties for incr. comp. (default: no):
1827
1825
- hashes of green query instances
1828
- - hash collisions of query keys" ) ,
1826
+ - hash collisions of query keys
1827
+ - hash collisions when creating dep-nodes" ) ,
1829
1828
inline_in_all_cgus: Option <bool > = ( None , parse_opt_bool, [ TRACKED ] ,
1830
1829
"control whether `#[inline]` functions are in all CGUs" ) ,
1831
1830
inline_llvm: bool = ( true , parse_bool, [ TRACKED ] ,
You can’t perform that action at this time.
0 commit comments