Skip to content

Commit 2723b03

Browse files
eduardosmAmanieu
authored andcommitted
Remove references to _mm_getcsr or _mm_setcsr in other function's docs
1 parent d8b0b51 commit 2723b03

File tree

1 file changed

+2
-4
lines changed
  • crates/core_arch/src/x86

1 file changed

+2
-4
lines changed

crates/core_arch/src/x86/sse.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -790,8 +790,7 @@ pub unsafe fn _mm_ucomineq_ss(a: __m128, b: __m128) -> i32 {
790790
///
791791
/// The result is rounded according to the current rounding mode. If the result
792792
/// cannot be represented as a 32 bit integer the result will be `0x8000_0000`
793-
/// (`i32::MIN`) or an invalid operation floating point exception if
794-
/// unmasked (see [`_mm_setcsr`](fn._mm_setcsr.html)).
793+
/// (`i32::MIN`).
795794
///
796795
/// This corresponds to the `CVTSS2SI` instruction (with 32 bit output).
797796
///
@@ -821,8 +820,7 @@ pub unsafe fn _mm_cvt_ss2si(a: __m128) -> i32 {
821820
///
822821
/// The result is rounded always using truncation (round towards zero). If the
823822
/// result cannot be represented as a 32 bit integer the result will be
824-
/// `0x8000_0000` (`i32::MIN`) or an invalid operation floating point
825-
/// exception if unmasked (see [`_mm_setcsr`](fn._mm_setcsr.html)).
823+
/// `0x8000_0000` (`i32::MIN`).
826824
///
827825
/// This corresponds to the `CVTTSS2SI` instruction (with 32 bit output).
828826
///

0 commit comments

Comments
 (0)