From 46d0e8d519a78f4a51793d83f3741d7ad6d6651c Mon Sep 17 00:00:00 2001 From: senevoldsen Date: Mon, 8 Nov 2021 01:58:47 +0100 Subject: [PATCH] Remove that _mm256_set_epi8 sets in reversed order. (#1248) --- library/stdarch/crates/core_arch/src/x86/avx.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/library/stdarch/crates/core_arch/src/x86/avx.rs b/library/stdarch/crates/core_arch/src/x86/avx.rs index 88d5c170dfd1..8e0af72ca541 100644 --- a/library/stdarch/crates/core_arch/src/x86/avx.rs +++ b/library/stdarch/crates/core_arch/src/x86/avx.rs @@ -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]