@@ -315,7 +315,6 @@ pub unsafe fn _mm256_div_pd(a: f64x4, b: f64x4) -> f64x4 {
315
315
a / b
316
316
}
317
317
318
-
319
318
/// Round packed double-precision (64-bit) floating point elements in `a`
320
319
/// according to the flag `b`. The value of `b` may be as follows:
321
320
///
@@ -865,7 +864,8 @@ pub unsafe fn _mm256_extractf128_si256(a: __m256i, imm8: i32) -> __m128i {
865
864
866
865
/// Extract an 8-bit integer from `a`, selected with `imm8`. Returns a 32-bit
867
866
/// integer containing the zero-extended integer data.
868
- /// See: https://reviews.llvm.org/D20468
867
+ ///
868
+ /// See [LLVM commit D20468][https://reviews.llvm.org/D20468].
869
869
#[ inline( always) ]
870
870
#[ target_feature = "+avx" ]
871
871
// This intrinsic has no corresponding instruction.
@@ -876,7 +876,8 @@ pub unsafe fn _mm256_extract_epi8(a: i8x32, imm8: i32) -> i32 {
876
876
877
877
/// Extract a 16-bit integer from `a`, selected with `imm8`. Returns a 32-bit
878
878
/// integer containing the zero-extended integer data.
879
- /// See: https://reviews.llvm.org/D20468
879
+ ///
880
+ /// See [LLVM commit D20468][https://reviews.llvm.org/D20468].
880
881
#[ inline( always) ]
881
882
#[ target_feature = "+avx" ]
882
883
// This intrinsic has no corresponding instruction.
@@ -2983,7 +2984,6 @@ mod tests {
2983
2984
assert_eq ! ( r, e) ;
2984
2985
}
2985
2986
2986
-
2987
2987
#[ simd_test = "avx" ]
2988
2988
unsafe fn _mm256_xor_pd ( ) {
2989
2989
let a = f64x4:: new ( 4. , 9. , 16. , 25. ) ;
@@ -4210,9 +4210,13 @@ mod tests {
4210
4210
25 , 26 , 27 , 28 ,
4211
4211
29 , 30 , 31 , 32 ,
4212
4212
) ) ;
4213
- let lo = __m128i:: from (
4214
- i8x16:: new ( 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 , 11 , 12 , 13 , 14 , 15 , 16 ) ,
4215
- ) ;
4213
+ #[ cfg_attr( rustfmt, rustfmt_skip) ]
4214
+ let lo = __m128i:: from ( i8x16:: new (
4215
+ 1 , 2 , 3 , 4 ,
4216
+ 5 , 6 , 7 , 8 ,
4217
+ 9 , 10 , 11 , 12 ,
4218
+ 13 , 14 , 15 , 16 ,
4219
+ ) ) ;
4216
4220
let r = avx:: _mm256_set_m128i ( hi, lo) ;
4217
4221
#[ cfg_attr( rustfmt, rustfmt_skip) ]
4218
4222
let e = __m256i:: from ( i8x32:: new (
@@ -4244,9 +4248,13 @@ mod tests {
4244
4248
4245
4249
#[ simd_test = "avx" ]
4246
4250
unsafe fn _mm256_setr_m128i ( ) {
4247
- let lo = __m128i:: from (
4248
- i8x16:: new ( 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 , 11 , 12 , 13 , 14 , 15 , 16 ) ,
4249
- ) ;
4251
+ #[ cfg_attr( rustfmt, rustfmt_skip) ]
4252
+ let lo = __m128i:: from ( i8x16:: new (
4253
+ 1 , 2 , 3 , 4 ,
4254
+ 5 , 6 , 7 , 8 ,
4255
+ 9 , 10 , 11 , 12 ,
4256
+ 13 , 14 , 15 , 16 ,
4257
+ ) ) ;
4250
4258
#[ cfg_attr( rustfmt, rustfmt_skip) ]
4251
4259
let hi = __m128i:: from ( i8x16:: new (
4252
4260
17 , 18 , 19 , 20 , 21 , 22 , 23 , 24 ,
0 commit comments