1
Fork 0

compiler: remove rustc_target reexport of rustc_abi::HashStableContext

The last public reexport of rustc_abi in rustc_target is finally gone.
This commit is contained in:
Jubilee Young 2025-02-09 23:55:16 -08:00
parent d9c7abba55
commit 038c183d5f
6 changed files with 5 additions and 9 deletions

View file

@ -8,7 +8,7 @@ use smallvec::SmallVec;
use crate::ich::StableHashingContext;
impl<'ctx> rustc_target::HashStableContext for StableHashingContext<'ctx> {}
impl<'ctx> rustc_abi::HashStableContext for StableHashingContext<'ctx> {}
impl<'ctx> rustc_ast::HashStableContext for StableHashingContext<'ctx> {}
impl<'a> HashStable<StableHashingContext<'a>> for [hir::Attribute] {