about summary refs log tree commit diff
path: root/compiler/rustc_session/src/options.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2025-03-24 15:02:09 +0000
committerbors <bors@rust-lang.org>2025-03-24 15:02:09 +0000
commit4510e86a41388733675465a8647d4235f3bf2023 (patch)
treec851d1e39a4cdf96f7ed110856055084a8b27926 /compiler/rustc_session/src/options.rs
parent90f5eab952728ac6edcf529a171f7de5c25e5d49 (diff)
parent2736a2a84f972baabe4012f890aaae14489af8d9 (diff)
downloadrust-4510e86a41388733675465a8647d4235f3bf2023.tar.gz
rust-4510e86a41388733675465a8647d4235f3bf2023.zip
Auto merge of #138629 - Zoxc:graph-anon-hashmap, r=oli-obk
Only use the new node hashmap for anonymous nodes

This is a rebase of https://github.com/rust-lang/rust/pull/112469.

cc `@cjgillot`
Diffstat (limited to 'compiler/rustc_session/src/options.rs')
-rw-r--r--compiler/rustc_session/src/options.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/rustc_session/src/options.rs b/compiler/rustc_session/src/options.rs
index b3be4b611f0..d2f202eb24e 100644
--- a/compiler/rustc_session/src/options.rs
+++ b/compiler/rustc_session/src/options.rs
@@ -2227,7 +2227,8 @@ options! {
     incremental_verify_ich: bool = (false, parse_bool, [UNTRACKED],
         "verify extended properties for incr. comp. (default: no):
         - hashes of green query instances
-        - hash collisions of query keys"),
+        - hash collisions of query keys
+        - hash collisions when creating dep-nodes"),
     inline_llvm: bool = (true, parse_bool, [TRACKED],
         "enable LLVM inlining (default: yes)"),
     inline_mir: Option<bool> = (None, parse_opt_bool, [TRACKED],