Remove that _mm256_set_epi8 sets in reversed order. (#1248)

This commit is contained in:
senevoldsen 2021-11-08 01:58:47 +01:00 committed by GitHub
parent 023a926d39
commit 46d0e8d519
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2139,8 +2139,7 @@ pub unsafe fn _mm256_set_ps(
_mm256_setr_ps(h, g, f, e, d, c, b, a)
}
/// Sets packed 8-bit integers in returned vector with the supplied values in
/// reverse order.
/// Sets packed 8-bit integers in returned vector with the supplied values.
///
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm256_set_epi8)
#[inline]