diff options
| author | Eduardo Sánchez Muñoz <eduardosm-dev@e64.io> | 2023-10-02 22:55:56 +0200 |
|---|---|---|
| committer | Amanieu d'Antras <amanieu@gmail.com> | 2023-10-02 22:09:17 +0100 |
| commit | 11a5eab3e663ac63a6dd5a97c805afed6395bb1c (patch) | |
| tree | 0e84cb9b7972ca47cfb737b0dad48ed695074083 /library/stdarch/crates | |
| parent | 02bdadb2ae798df3977c382b208fbcfd06ff2ee7 (diff) | |
| download | rust-11a5eab3e663ac63a6dd5a97c805afed6395bb1c.tar.gz rust-11a5eab3e663ac63a6dd5a97c805afed6395bb1c.zip | |
Bump _mm_getcsr/_mm_setcsr deprecation Rust version to 1.75
Diffstat (limited to 'library/stdarch/crates')
| -rw-r--r-- | library/stdarch/crates/core_arch/src/x86/sse.rs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/library/stdarch/crates/core_arch/src/x86/sse.rs b/library/stdarch/crates/core_arch/src/x86/sse.rs index 9e6fac2b5b4..5050cd770be 100644 --- a/library/stdarch/crates/core_arch/src/x86/sse.rs +++ b/library/stdarch/crates/core_arch/src/x86/sse.rs @@ -1380,7 +1380,7 @@ pub unsafe fn _mm_sfence() { #[cfg_attr(test, assert_instr(stmxcsr))] #[stable(feature = "simd_x86", since = "1.27.0")] #[deprecated( - since = "1.73.0", + since = "1.75.0", note = "see `_mm_getcsr` documentation - use inline assembly instead" )] pub unsafe fn _mm_getcsr() -> u32 { @@ -1531,7 +1531,7 @@ pub unsafe fn _mm_getcsr() -> u32 { #[cfg_attr(test, assert_instr(ldmxcsr))] #[stable(feature = "simd_x86", since = "1.27.0")] #[deprecated( - since = "1.73.0", + since = "1.75.0", note = "see `_mm_setcsr` documentation - use inline assembly instead" )] pub unsafe fn _mm_setcsr(val: u32) { @@ -1618,7 +1618,7 @@ pub const _MM_FLUSH_ZERO_OFF: u32 = 0x0000; #[target_feature(enable = "sse")] #[stable(feature = "simd_x86", since = "1.27.0")] #[deprecated( - since = "1.73.0", + since = "1.75.0", note = "see `_mm_getcsr` documentation - use inline assembly instead" )] pub unsafe fn _MM_GET_EXCEPTION_MASK() -> u32 { @@ -1634,7 +1634,7 @@ pub unsafe fn _MM_GET_EXCEPTION_MASK() -> u32 { #[target_feature(enable = "sse")] #[stable(feature = "simd_x86", since = "1.27.0")] #[deprecated( - since = "1.73.0", + since = "1.75.0", note = "see `_mm_getcsr` documentation - use inline assembly instead" )] pub unsafe fn _MM_GET_EXCEPTION_STATE() -> u32 { @@ -1650,7 +1650,7 @@ pub unsafe fn _MM_GET_EXCEPTION_STATE() -> u32 { #[target_feature(enable = "sse")] #[stable(feature = "simd_x86", since = "1.27.0")] #[deprecated( - since = "1.73.0", + since = "1.75.0", note = "see `_mm_getcsr` documentation - use inline assembly instead" )] pub unsafe fn _MM_GET_FLUSH_ZERO_MODE() -> u32 { @@ -1666,7 +1666,7 @@ pub unsafe fn _MM_GET_FLUSH_ZERO_MODE() -> u32 { #[target_feature(enable = "sse")] #[stable(feature = "simd_x86", since = "1.27.0")] #[deprecated( - since = "1.73.0", + since = "1.75.0", note = "see `_mm_getcsr` documentation - use inline assembly instead" )] pub unsafe fn _MM_GET_ROUNDING_MODE() -> u32 { @@ -1682,7 +1682,7 @@ pub unsafe fn _MM_GET_ROUNDING_MODE() -> u32 { #[target_feature(enable = "sse")] #[stable(feature = "simd_x86", since = "1.27.0")] #[deprecated( - since = "1.73.0", + since = "1.75.0", note = "see `_mm_setcsr` documentation - use inline assembly instead" )] pub unsafe fn _MM_SET_EXCEPTION_MASK(x: u32) { @@ -1698,7 +1698,7 @@ pub unsafe fn _MM_SET_EXCEPTION_MASK(x: u32) { #[target_feature(enable = "sse")] #[stable(feature = "simd_x86", since = "1.27.0")] #[deprecated( - since = "1.73.0", + since = "1.75.0", note = "see `_mm_setcsr` documentation - use inline assembly instead" )] pub unsafe fn _MM_SET_EXCEPTION_STATE(x: u32) { @@ -1714,7 +1714,7 @@ pub unsafe fn _MM_SET_EXCEPTION_STATE(x: u32) { #[target_feature(enable = "sse")] #[stable(feature = "simd_x86", since = "1.27.0")] #[deprecated( - since = "1.73.0", + since = "1.75.0", note = "see `_mm_setcsr` documentation - use inline assembly instead" )] pub unsafe fn _MM_SET_FLUSH_ZERO_MODE(x: u32) { @@ -1732,7 +1732,7 @@ pub unsafe fn _MM_SET_FLUSH_ZERO_MODE(x: u32) { #[target_feature(enable = "sse")] #[stable(feature = "simd_x86", since = "1.27.0")] #[deprecated( - since = "1.73.0", + since = "1.75.0", note = "see `_mm_setcsr` documentation - use inline assembly instead" )] pub unsafe fn _MM_SET_ROUNDING_MODE(x: u32) { |
