Skip to content

Commit

Permalink
Bump _mm_getcsr/_mm_setcsr deprecation Rust version to 1.75
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardosm authored and Amanieu committed Oct 2, 2023
1 parent 61e13f8 commit 333e9e9
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions crates/core_arch/src/x86/sse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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) {
Expand Down Expand Up @@ -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 {
Expand All @@ -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 {
Expand All @@ -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 {
Expand All @@ -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 {
Expand All @@ -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) {
Expand All @@ -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) {
Expand All @@ -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) {
Expand All @@ -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) {
Expand Down

0 comments on commit 333e9e9

Please sign in to comment.