Skip to content

Commit d3cbedd

Browse files
committed
Stabilize movbe target feature
1 parent 13471d3 commit d3cbedd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

compiler/rustc_codegen_ssa/src/target_features.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ const X86_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[
192192
("fxsr", None),
193193
("gfni", Some(sym::avx512_target_feature)),
194194
("lzcnt", None),
195-
("movbe", Some(sym::movbe_target_feature)),
195+
("movbe", None),
196196
("pclmulqdq", None),
197197
("popcnt", None),
198198
("rdrand", None),
@@ -394,7 +394,6 @@ pub fn from_target_feature(
394394
Some(sym::sse4a_target_feature) => rust_features.sse4a_target_feature,
395395
Some(sym::tbm_target_feature) => rust_features.tbm_target_feature,
396396
Some(sym::wasm_target_feature) => rust_features.wasm_target_feature,
397-
Some(sym::movbe_target_feature) => rust_features.movbe_target_feature,
398397
Some(sym::rtm_target_feature) => rust_features.rtm_target_feature,
399398
Some(sym::ermsb_target_feature) => rust_features.ermsb_target_feature,
400399
Some(sym::bpf_target_feature) => rust_features.bpf_target_feature,

compiler/rustc_feature/src/accepted.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ declare_features! (
9090
(accepted, clone_closures, "1.26.0", Some(44490), None),
9191
/// Allows coercing non capturing closures to function pointers.
9292
(accepted, closure_to_fn_coercion, "1.19.0", Some(39817), None),
93-
/// Allows using `cmpxchg16b` from `core::arch::x86_64`.
93+
/// Allows using the CMPXCHG16B target feature.
9494
(accepted, cmpxchg16b_target_feature, "CURRENT_RUSTC_VERSION", Some(44839), None),
9595
/// Allows usage of the `compile_error!` macro.
9696
(accepted, compile_error, "1.20.0", Some(40872), None),
@@ -238,6 +238,8 @@ declare_features! (
238238
(accepted, min_const_unsafe_fn, "1.33.0", Some(55607), None),
239239
/// Allows using `Self` and associated types in struct expressions and patterns.
240240
(accepted, more_struct_aliases, "1.16.0", Some(37544), None),
241+
/// Allows using the MOVBE target feature.
242+
(accepted, movbe_target_feature, "CURRENT_RUSTC_VERSION", Some(44839), None),
241243
/// Allows patterns with concurrent by-move and by-ref bindings.
242244
/// For example, you can write `Foo(a, ref b)` where `a` is by-move and `b` is by-ref.
243245
(accepted, move_ref_pattern, "1.49.0", Some(68354), None),

compiler/rustc_feature/src/active.rs

-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,6 @@ declare_features! (
259259
(active, ermsb_target_feature, "1.49.0", Some(44839), None),
260260
(active, hexagon_target_feature, "1.27.0", Some(44839), None),
261261
(active, mips_target_feature, "1.27.0", Some(44839), None),
262-
(active, movbe_target_feature, "1.34.0", Some(44839), None),
263262
(active, powerpc_target_feature, "1.27.0", Some(44839), None),
264263
(active, riscv_target_feature, "1.45.0", Some(44839), None),
265264
(active, rtm_target_feature, "1.35.0", Some(44839), None),

0 commit comments

Comments
 (0)