@@ -755,7 +755,9 @@ pub unsafe fn _mm_maskload_epi32(mem_addr: *const i32, mask: i32x4) -> i32x4 {
755
755
#[ inline( always) ]
756
756
#[ target_feature = "+avx2" ]
757
757
#[ cfg_attr( test, assert_instr( vpmaskmovd) ) ]
758
- pub unsafe fn _mm256_maskload_epi32 ( mem_addr : * const i32 , mask : i32x8 ) -> i32x8 {
758
+ pub unsafe fn _mm256_maskload_epi32 (
759
+ mem_addr : * const i32 , mask : i32x8
760
+ ) -> i32x8 {
759
761
maskloadd256 ( mem_addr as * const i8 , mask)
760
762
}
761
763
@@ -775,7 +777,9 @@ pub unsafe fn _mm_maskload_epi64(mem_addr: *const i64, mask: i64x2) -> i64x2 {
775
777
#[ inline( always) ]
776
778
#[ target_feature = "+avx2" ]
777
779
#[ cfg_attr( test, assert_instr( vpmaskmovq) ) ]
778
- pub unsafe fn _mm256_maskload_epi64 ( mem_addr : * const i64 , mask : i64x4 ) -> i64x4 {
780
+ pub unsafe fn _mm256_maskload_epi64 (
781
+ mem_addr : * const i64 , mask : i64x4
782
+ ) -> i64x4 {
779
783
maskloadq256 ( mem_addr as * const i8 , mask)
780
784
}
781
785
@@ -795,7 +799,9 @@ pub unsafe fn _mm_maskstore_epi32(mem_addr: *mut i32, mask: i32x4, a: i32x4) {
795
799
#[ inline( always) ]
796
800
#[ target_feature = "+avx2" ]
797
801
#[ cfg_attr( test, assert_instr( vpmaskmovd) ) ]
798
- pub unsafe fn _mm256_maskstore_epi32 ( mem_addr : * mut i32 , mask : i32x8 , a : i32x8 ) {
802
+ pub unsafe fn _mm256_maskstore_epi32 (
803
+ mem_addr : * mut i32 , mask : i32x8 , a : i32x8
804
+ ) {
799
805
maskstored256 ( mem_addr as * mut i8 , mask, a)
800
806
}
801
807
@@ -815,7 +821,9 @@ pub unsafe fn _mm_maskstore_epi64(mem_addr: *mut i64, mask: i64x2, a: i64x2) {
815
821
#[ inline( always) ]
816
822
#[ target_feature = "+avx2" ]
817
823
#[ cfg_attr( test, assert_instr( vpmaskmovq) ) ]
818
- pub unsafe fn _mm256_maskstore_epi64 ( mem_addr : * mut i64 , mask : i64x4 , a : i64x4 ) {
824
+ pub unsafe fn _mm256_maskstore_epi64 (
825
+ mem_addr : * mut i64 , mask : i64x4 , a : i64x4
826
+ ) {
819
827
maskstoreq256 ( mem_addr as * mut i8 , mask, a)
820
828
}
821
829
@@ -1184,7 +1192,8 @@ pub unsafe fn _mm256_shuffle_epi8(a: u8x32, b: u8x32) -> u8x32 {
1184
1192
pshufb ( a, b)
1185
1193
}
1186
1194
1187
- /// Shuffle 32-bit integers in 128-bit lanes of `a` using the control in `imm8`.
1195
+ /// Shuffle 32-bit integers in 128-bit lanes of `a` using the control in
1196
+ /// `imm8`.
1188
1197
///
1189
1198
/// ```rust
1190
1199
/// # #![feature(cfg_target_feature)]
0 commit comments