Skip to content

Commit f1c9a3f

Browse files
committed
Allow too_many_arguments for Simd512::new()
1 parent 30ee557 commit f1c9a3f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/arch/vpclmulqdq.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ struct Simd512(__m512i);
4747
impl Simd512 {
4848
#[inline]
4949
#[target_feature(enable = "avx512f")]
50+
#[allow(clippy::too_many_arguments)]
5051
unsafe fn new(x7: u64, x6: u64, x5: u64, x4: u64, x3: u64, x2: u64, x1: u64, x0: u64) -> Self {
5152
Self(_mm512_set_epi64(
5253
x7 as i64, x6 as i64, x5 as i64, x4 as i64, x3 as i64, x2 as i64, x1 as i64, x0 as i64,

0 commit comments

Comments
 (0)