Skip to content

Commit 8f69266

Browse files
committed
Emit warnings on misplaced #[no_mangle]
1 parent acd68b5 commit 8f69266

File tree

3 files changed

+225
-138
lines changed

3 files changed

+225
-138
lines changed

compiler/rustc_passes/src/check_attr.rs

+23
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ impl CheckAttrVisitor<'tcx> {
8383
self.check_link_name(hir_id, attr, span, target);
8484
} else if self.tcx.sess.check_name(attr, sym::link_section) {
8585
self.check_link_section(hir_id, attr, span, target);
86+
} else if self.tcx.sess.check_name(attr, sym::no_mangle) {
87+
self.check_no_mangle(hir_id, attr, span, target);
8688
}
8789
true
8890
};
@@ -419,6 +421,27 @@ impl CheckAttrVisitor<'tcx> {
419421
}
420422
}
421423

424+
/// Checks if `#[no_mangle]` is applied to a function or static.
425+
fn check_no_mangle(&self, hir_id: HirId, attr: &Attribute, span: &Span, target: Target) {
426+
match target {
427+
Target::Static | Target::Fn | Target::Method(..) => {}
428+
_ => {
429+
// FIXME: #[no_mangle] was previously allowed on non-functions/statics and some
430+
// crates used this, so only emit a warning.
431+
self.tcx.struct_span_lint_hir(UNUSED_ATTRIBUTES, hir_id, attr.span, |lint| {
432+
lint.build("attribute should be applied to a function or static")
433+
.warn(
434+
"this was previously accepted by the compiler but is \
435+
being phased out; it will become a hard error in \
436+
a future release!",
437+
)
438+
.span_label(*span, "not a function or static")
439+
.emit();
440+
});
441+
}
442+
}
443+
}
444+
422445
/// Checks if the `#[repr]` attributes on `item` are valid.
423446
fn check_repr(
424447
&self,

src/test/ui/feature-gate/issue-43106-gating-of-builtin-attrs.rs

+15
Original file line numberDiff line numberDiff line change
@@ -372,16 +372,31 @@ mod automatically_derived {
372372
}
373373

374374
#[no_mangle]
375+
//~^ WARN attribute should be applied to a function or static [unused_attributes]
376+
//~| WARN this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
375377
mod no_mangle {
378+
//~^ NOTE not a function or static
376379
mod inner { #![no_mangle] }
380+
//~^ WARN attribute should be applied to a function or static [unused_attributes]
381+
//~| WARN this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
382+
//~| NOTE not a function or static
377383

378384
#[no_mangle] fn f() { }
379385

380386
#[no_mangle] struct S;
387+
//~^ WARN attribute should be applied to a function or static [unused_attributes]
388+
//~| WARN this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
389+
//~| NOTE not a function or static
381390

382391
#[no_mangle] type T = S;
392+
//~^ WARN attribute should be applied to a function or static [unused_attributes]
393+
//~| WARN this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
394+
//~| NOTE not a function or static
383395

384396
#[no_mangle] impl S { }
397+
//~^ WARN attribute should be applied to a function or static [unused_attributes]
398+
//~| WARN this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
399+
//~| NOTE not a function or static
385400
}
386401

387402
#[should_panic]

0 commit comments

Comments
 (0)