]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_middle/src/ich/mod.rs
Auto merge of #88227 - 12101111:nobundle-link-order, r=petrochenkov
[rust.git] / compiler / rustc_middle / src / ich / mod.rs
1 //! ICH - Incremental Compilation Hash
2
3 pub use self::hcx::{
4     hash_stable_trait_impls, NodeIdHashingMode, StableHashingContext, StableHashingContextProvider,
5 };
6 use rustc_span::symbol::{sym, Symbol};
7
8 mod hcx;
9
10 mod impls_hir;
11 mod impls_syntax;
12 mod impls_ty;
13
14 pub const IGNORED_ATTRIBUTES: &[Symbol] = &[
15     sym::cfg,
16     sym::rustc_if_this_changed,
17     sym::rustc_then_this_would_need,
18     sym::rustc_dirty,
19     sym::rustc_clean,
20     sym::rustc_partition_reused,
21     sym::rustc_partition_codegened,
22     sym::rustc_expected_cgu_reuse,
23 ];