about summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa/src
diff options
context:
space:
mode:
authorLéo Lanteri Thauvin <leseulartichaut@gmail.com>2023-03-10 13:50:51 +0100
committerLéo Lanteri Thauvin <leseulartichaut@gmail.com>2023-03-10 13:50:51 +0100
commitad2bcb5c0e7603092011b6a5ca6328ae6c3fa2c0 (patch)
tree3b31fafff11f0d611d1fa16126e2182712c8b4c5 /compiler/rustc_codegen_ssa/src
parent104f4300cfddbd956e32820ef202a732f06ec848 (diff)
downloadrust-ad2bcb5c0e7603092011b6a5ca6328ae6c3fa2c0.tar.gz
rust-ad2bcb5c0e7603092011b6a5ca6328ae6c3fa2c0.zip
Forbid `#[target_feature]` on safe default implementations
Diffstat (limited to 'compiler/rustc_codegen_ssa/src')
-rw-r--r--compiler/rustc_codegen_ssa/src/target_features.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/target_features.rs b/compiler/rustc_codegen_ssa/src/target_features.rs
index 576e90ae66b..679dc0866f2 100644
--- a/compiler/rustc_codegen_ssa/src/target_features.rs
+++ b/compiler/rustc_codegen_ssa/src/target_features.rs
@@ -442,7 +442,7 @@ fn asm_target_features(tcx: TyCtxt<'_>, did: DefId) -> &FxIndexSet<Symbol> {
 pub fn check_target_feature_trait_unsafe(tcx: TyCtxt<'_>, id: LocalDefId, attr_span: Span) {
     if let DefKind::AssocFn = tcx.def_kind(id) {
         let parent_id = tcx.local_parent(id);
-        if let DefKind::Impl { of_trait: true } = tcx.def_kind(parent_id) {
+        if let DefKind::Trait | DefKind::Impl { of_trait: true } = tcx.def_kind(parent_id) {
             tcx.sess
                 .struct_span_err(
                     attr_span,