@@ -14,7 +14,6 @@ use self::code_stats::CodeStats;
1414use hir:: def_id:: CrateNum ;
1515use rustc_data_structures:: fingerprint:: Fingerprint ;
1616
17- use ich;
1817use lint;
1918use lint:: builtin:: BuiltinLintDiagnostics ;
2019use middle:: allocator:: AllocatorKind ;
@@ -34,7 +33,6 @@ use errors::emitter::{Emitter, EmitterWriter};
3433use syntax:: edition:: Edition ;
3534use syntax:: json:: JsonEmitter ;
3635use syntax:: feature_gate;
37- use syntax:: symbol:: Symbol ;
3836use syntax:: parse;
3937use syntax:: parse:: ParseSess ;
4038use syntax:: { ast, codemap} ;
@@ -128,9 +126,6 @@ pub struct Session {
128126
129127 incr_comp_session : OneThread < RefCell < IncrCompSession > > ,
130128
131- /// A cache of attributes ignored by StableHashingContext
132- pub ignored_attr_names : FxHashSet < Symbol > ,
133-
134129 /// Used by -Z profile-queries in util::common
135130 pub profile_channel : Lock < Option < mpsc:: Sender < ProfileQueriesMsg > > > ,
136131
@@ -1143,7 +1138,6 @@ pub fn build_session_(
11431138 injected_panic_runtime : Once :: new ( ) ,
11441139 imported_macro_spans : OneThread :: new ( RefCell :: new ( HashMap :: new ( ) ) ) ,
11451140 incr_comp_session : OneThread :: new ( RefCell :: new ( IncrCompSession :: NotInitialized ) ) ,
1146- ignored_attr_names : ich:: compute_ignored_attr_names ( ) ,
11471141 self_profiling : Lock :: new ( SelfProfiler :: new ( ) ) ,
11481142 profile_channel : Lock :: new ( None ) ,
11491143 perf_stats : PerfStats {
0 commit comments