From 169d8d8c48fa3b801c4e36b1ab393d7cd9e00077 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Wed, 1 Mar 2023 12:06:17 +0900 Subject: [PATCH] Fix stable_features warnings ``` warning: the feature `cmpxchg16b_target_feature` has been stable since 1.69.0-nightly and no longer requires an attribute to enable --> crates/core_arch/src/lib.rs:24:5 | 24 | cmpxchg16b_target_feature, | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(stable_features)]` on by default warning: the feature `target_feature_11` has been stable since 1.69.0-nightly and no longer requires an attribute to enable --> crates/core_arch/src/lib.rs:34:5 | 34 | target_feature_11, | ^^^^^^^^^^^^^^^^^ ``` --- library/stdarch/crates/core_arch/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/library/stdarch/crates/core_arch/src/lib.rs b/library/stdarch/crates/core_arch/src/lib.rs index 4e85620045b3..e4c4df652d86 100644 --- a/library/stdarch/crates/core_arch/src/lib.rs +++ b/library/stdarch/crates/core_arch/src/lib.rs @@ -21,7 +21,6 @@ sse4a_target_feature, riscv_target_feature, arm_target_feature, - cmpxchg16b_target_feature, avx512_target_feature, mips_target_feature, powerpc_target_feature, @@ -31,7 +30,6 @@ allow_internal_unstable, decl_macro, asm_const, - target_feature_11, inline_const, generic_arg_infer )]