Skip to content

Commit a4f2d14

Browse files
committed
Stabilize cmpxchg16b_target_feature
1 parent 5b6ed25 commit a4f2d14

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

compiler/rustc_codegen_ssa/src/target_features.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ const X86_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[
185185
("avx512vpopcntdq", Some(sym::avx512_target_feature)),
186186
("bmi1", None),
187187
("bmi2", None),
188-
("cmpxchg16b", Some(sym::cmpxchg16b_target_feature)),
188+
("cmpxchg16b", None),
189189
("ermsb", Some(sym::ermsb_target_feature)),
190190
("f16c", None),
191191
("fma", None),
@@ -393,7 +393,6 @@ pub fn from_target_feature(
393393
Some(sym::sse4a_target_feature) => rust_features.sse4a_target_feature,
394394
Some(sym::tbm_target_feature) => rust_features.tbm_target_feature,
395395
Some(sym::wasm_target_feature) => rust_features.wasm_target_feature,
396-
Some(sym::cmpxchg16b_target_feature) => rust_features.cmpxchg16b_target_feature,
397396
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,

compiler/rustc_feature/src/accepted.rs

+2
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ 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`.
94+
(accepted, cmpxchg16b_target_feature, "CURRENT_RUSTC_VERSION", Some(44839), None),
9395
/// Allows usage of the `compile_error!` macro.
9496
(accepted, compile_error, "1.20.0", Some(40872), None),
9597
/// Allows `impl Trait` in function return types.

compiler/rustc_feature/src/active.rs

-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,6 @@ declare_features! (
254254
(active, arm_target_feature, "1.27.0", Some(44839), None),
255255
(active, avx512_target_feature, "1.27.0", Some(44839), None),
256256
(active, bpf_target_feature, "1.54.0", Some(44839), None),
257-
(active, cmpxchg16b_target_feature, "1.32.0", Some(44839), None),
258257
(active, ermsb_target_feature, "1.49.0", Some(44839), None),
259258
(active, hexagon_target_feature, "1.27.0", Some(44839), None),
260259
(active, mips_target_feature, "1.27.0", Some(44839), None),

library/core/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,6 @@
241241
// Target features:
242242
#![feature(arm_target_feature)]
243243
#![feature(avx512_target_feature)]
244-
#![feature(cmpxchg16b_target_feature)]
245244
#![feature(hexagon_target_feature)]
246245
#![feature(mips_target_feature)]
247246
#![feature(powerpc_target_feature)]
@@ -250,6 +249,7 @@
250249
#![feature(sse4a_target_feature)]
251250
#![feature(tbm_target_feature)]
252251
#![feature(wasm_target_feature)]
252+
#![cfg_attr(bootstrap, feature(cmpxchg16b_target_feature))]
253253

254254
// allow using `core::` in intra-doc links
255255
#[allow(unused_extern_crates)]

0 commit comments

Comments
 (0)