about summary refs log tree commit diff
path: root/compiler/rustc_feature/src/accepted.rs
diff options
context:
space:
mode:
authorsayantn <sayantn05@gmail.com>2025-04-17 03:28:16 +0530
committersayantn <sayantn05@gmail.com>2025-05-18 11:12:15 +0530
commitcf7caded0bc2d0d84f4c84cc6dc108c16d23f134 (patch)
treeedcd12c22ad0e4c66363c30faf08a7e1af791742 /compiler/rustc_feature/src/accepted.rs
parentac17c3486c6fdfbb0c3c18b99f3d8dfbff625d29 (diff)
downloadrust-cf7caded0bc2d0d84f4c84cc6dc108c16d23f134.tar.gz
rust-cf7caded0bc2d0d84f4c84cc6dc108c16d23f134.zip
Stabilize `avx512_target_feature`
Diffstat (limited to 'compiler/rustc_feature/src/accepted.rs')
-rw-r--r--compiler/rustc_feature/src/accepted.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_feature/src/accepted.rs b/compiler/rustc_feature/src/accepted.rs
index 809d1630dde..820af9ac84b 100644
--- a/compiler/rustc_feature/src/accepted.rs
+++ b/compiler/rustc_feature/src/accepted.rs
@@ -82,6 +82,8 @@ declare_features! (
     (accepted, attr_literals, "1.30.0", Some(34981)),
     /// Allows overloading augmented assignment operations like `a += b`.
     (accepted, augmented_assignments, "1.8.0", Some(28235)),
+    /// Allows using `avx512*` target features.
+    (accepted, avx512_target_feature, "CURRENT_RUSTC_VERSION", Some(44839)),
     /// Allows mixing bind-by-move in patterns and references to those identifiers in guards.
     (accepted, bind_by_move_pattern_guards, "1.39.0", Some(15287)),
     /// Allows bindings in the subpattern of a binding pattern.