Skip to content

Commit ec5d494

Browse files
committed
Stabilize ADX, TBM, and SSE4a target features
1 parent 38cd948 commit ec5d494

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/libsyntax/feature_gate.rs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -268,10 +268,7 @@ declare_features! (
268268
(active, mips_target_feature, "1.27.0", Some(44839), None),
269269
(active, avx512_target_feature, "1.27.0", Some(44839), None),
270270
(active, mmx_target_feature, "1.27.0", Some(44839), None),
271-
(active, sse4a_target_feature, "1.27.0", Some(44839), None),
272-
(active, tbm_target_feature, "1.27.0", Some(44839), None),
273271
(active, wasm_target_feature, "1.30.0", Some(44839), None),
274-
(active, adx_target_feature, "1.32.0", Some(44839), None),
275272
(active, cmpxchg16b_target_feature, "1.32.0", Some(44839), None),
276273
(active, movbe_target_feature, "1.34.0", Some(44839), None),
277274
(active, rtm_target_feature, "1.35.0", Some(44839), None),
@@ -850,6 +847,12 @@ declare_features! (
850847
(accepted, repr_align_enum, "1.37.0", Some(57996), None),
851848
// Allows `const _: TYPE = VALUE`.
852849
(accepted, underscore_const_names, "1.37.0", Some(54912), None),
850+
// Allows using SSE4A intrinsics from `core::arch::{x86, x86_64}`.
851+
(accepted, sse4a_target_feature, "1.37.0", Some(44839), None),
852+
// Allows using TBM intrinsics from `core::arch::{x86, x86_64}`.
853+
(accepted, tbm_target_feature, "1.37.0", Some(44839), None),
854+
// Allows using ADX intrinsics from `core::arch::{x86, x86_64}`.
855+
(accepted, adx_target_feature, "1.37.0", Some(44839), None),
853856

854857
// -------------------------------------------------------------------------
855858
// feature-group-end: accepted features

0 commit comments

Comments
 (0)