diff options
| author | Folkert de Vries <folkert@folkertdev.nl> | 2025-05-19 20:51:31 +0200 |
|---|---|---|
| committer | Amanieu d'Antras <amanieu@gmail.com> | 2025-05-20 14:26:46 +0000 |
| commit | a850e8738a5232eb5614dd0db51c892d17bbdf97 (patch) | |
| tree | f82ba40198ad149dca36894a9369c9efc98d5944 | |
| parent | 806848f01eff7b602718455d1d7dd5734e875087 (diff) | |
| download | rust-a850e8738a5232eb5614dd0db51c892d17bbdf97.tar.gz rust-a850e8738a5232eb5614dd0db51c892d17bbdf97.zip | |
`avx512_target_feature` is now stable on nightly
| -rw-r--r-- | library/stdarch/crates/core_arch/src/lib.rs | 1 | ||||
| -rw-r--r-- | library/stdarch/crates/std_detect/tests/x86-specific.rs | 1 | ||||
| -rw-r--r-- | library/stdarch/examples/connect5.rs | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/library/stdarch/crates/core_arch/src/lib.rs b/library/stdarch/crates/core_arch/src/lib.rs index 6c68a072118..3a760fe276e 100644 --- a/library/stdarch/crates/core_arch/src/lib.rs +++ b/library/stdarch/crates/core_arch/src/lib.rs @@ -22,7 +22,6 @@ sse4a_target_feature, riscv_target_feature, arm_target_feature, - avx512_target_feature, mips_target_feature, powerpc_target_feature, s390x_target_feature, diff --git a/library/stdarch/crates/std_detect/tests/x86-specific.rs b/library/stdarch/crates/std_detect/tests/x86-specific.rs index 2b6a394910d..04080f639c9 100644 --- a/library/stdarch/crates/std_detect/tests/x86-specific.rs +++ b/library/stdarch/crates/std_detect/tests/x86-specific.rs @@ -2,7 +2,6 @@ #![allow(internal_features)] #![feature( stdarch_internal, - avx512_target_feature, sha512_sm_x86, x86_amx_intrinsics, xop_target_feature, diff --git a/library/stdarch/examples/connect5.rs b/library/stdarch/examples/connect5.rs index 45d30dbe4c9..2e049cc9bd9 100644 --- a/library/stdarch/examples/connect5.rs +++ b/library/stdarch/examples/connect5.rs @@ -29,7 +29,6 @@ //! each move. #![allow(internal_features)] -#![feature(avx512_target_feature)] #![cfg_attr(target_arch = "x86", feature(stdarch_x86_avx512, stdarch_internal))] #![cfg_attr(target_arch = "x86_64", feature(stdarch_x86_avx512, stdarch_internal))] #![feature(stmt_expr_attributes)] |
