diff options
| author | sayantn <sayantn05@gmail.com> | 2025-04-17 03:28:16 +0530 |
|---|---|---|
| committer | sayantn <sayantn05@gmail.com> | 2025-05-18 11:12:15 +0530 |
| commit | cf7caded0bc2d0d84f4c84cc6dc108c16d23f134 (patch) | |
| tree | edcd12c22ad0e4c66363c30faf08a7e1af791742 /compiler/rustc_feature | |
| parent | ac17c3486c6fdfbb0c3c18b99f3d8dfbff625d29 (diff) | |
| download | rust-cf7caded0bc2d0d84f4c84cc6dc108c16d23f134.tar.gz rust-cf7caded0bc2d0d84f4c84cc6dc108c16d23f134.zip | |
Stabilize `avx512_target_feature`
Diffstat (limited to 'compiler/rustc_feature')
| -rw-r--r-- | compiler/rustc_feature/src/accepted.rs | 2 | ||||
| -rw-r--r-- | compiler/rustc_feature/src/unstable.rs | 1 |
2 files changed, 2 insertions, 1 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. diff --git a/compiler/rustc_feature/src/unstable.rs b/compiler/rustc_feature/src/unstable.rs index 8fb10736539..6cdcf451f37 100644 --- a/compiler/rustc_feature/src/unstable.rs +++ b/compiler/rustc_feature/src/unstable.rs @@ -318,7 +318,6 @@ declare_features! ( (unstable, aarch64_ver_target_feature, "1.27.0", Some(44839)), (unstable, apx_target_feature, "1.88.0", Some(139284)), (unstable, arm_target_feature, "1.27.0", Some(44839)), - (unstable, avx512_target_feature, "1.27.0", Some(44839)), (unstable, bpf_target_feature, "1.54.0", Some(44839)), (unstable, csky_target_feature, "1.73.0", Some(44839)), (unstable, ermsb_target_feature, "1.49.0", Some(44839)), |
