Deduplicate unchecked_attrs errors.
This commit is contained in:
parent
2658fb7783
commit
90a562c7ff
@ -168,7 +168,7 @@ pub fn check_dirty_clean_annotations(tcx: TyCtxt<'_>) {
|
||||
// Note that we cannot use the existing "unused attribute"-infrastructure
|
||||
// here, since that is running before codegen. This is also the reason why
|
||||
// all codegen-specific attributes are `AssumedUsed` in rustc_ast::feature_gate.
|
||||
all_attrs.report_unchecked_attrs(&dirty_clean_visitor.checked_attrs);
|
||||
all_attrs.report_unchecked_attrs(dirty_clean_visitor.checked_attrs);
|
||||
})
|
||||
}
|
||||
|
||||
@ -535,13 +535,14 @@ fn is_active_attr(&mut self, attr: &Attribute) -> bool {
|
||||
false
|
||||
}
|
||||
|
||||
fn report_unchecked_attrs(&self, checked_attrs: &FxHashSet<ast::AttrId>) {
|
||||
fn report_unchecked_attrs(&self, mut checked_attrs: FxHashSet<ast::AttrId>) {
|
||||
for attr in &self.found_attrs {
|
||||
if !checked_attrs.contains(&attr.id) {
|
||||
self.tcx.sess.span_err(
|
||||
attr.span,
|
||||
"found unchecked `#[rustc_dirty]` / `#[rustc_clean]` attribute",
|
||||
);
|
||||
checked_attrs.insert(attr.id);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user