Skip to content

Commit

Permalink
Fix stable_features warnings
Browse files Browse the repository at this point in the history
```
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,
   |     ^^^^^^^^^^^^^^^^^
```
  • Loading branch information
taiki-e authored and Amanieu committed Mar 1, 2023
1 parent 4ee1bda commit 307c42f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions crates/core_arch/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -31,7 +30,6 @@
allow_internal_unstable,
decl_macro,
asm_const,
target_feature_11,
inline_const,
generic_arg_infer
)]
Expand Down

0 comments on commit 307c42f

Please sign in to comment.