Typo in _mm_xor_pd description (#1304)

This commit is contained in:
Matan Hamilis 2022-04-29 03:30:11 +03:00 committed by GitHub
parent e75d75e292
commit f4d6903728
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1774,7 +1774,7 @@ pub unsafe fn _mm_or_pd(a: __m128d, b: __m128d) -> __m128d {
transmute(_mm_or_si128(a, b))
}
/// Computes the bitwise OR of `a` and `b`.
/// Computes the bitwise XOR of `a` and `b`.
///
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_xor_pd)
#[inline]