-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Investigate usages of #[stable_hasher(project(name))]
#91921
Comments
@rustbot claim |
IIRC, it was done purely as a bug-compatibility measure when |
This is now causing a bug - since we now serialize the full |
@rustbot release-assignment
|
In several places, we use
#[stable_hasher(project(name))]
to skip hashing theSpan
of anIdent
. For example:rust/compiler/rustc_hir/src/hir.rs
Lines 205 to 209 in 404c847
It's not obvious why this is correct. Assuming that this isn't causing any issues with incr comp invalidation, then we should add comments explaining why this is the right thing to do.
The text was updated successfully, but these errors were encountered: