File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 6
6
7
7
use crate :: traits:: ArchOps ;
8
8
use std:: arch:: aarch64:: * ;
9
- use std:: arch:: is_aarch64_feature_detected;
10
9
11
10
#[ derive( Debug , Copy , Clone ) ]
12
11
pub struct AArch64Ops ;
@@ -268,7 +267,7 @@ impl ArchOps for AArch64Ops {
268
267
) -> Self :: Vector {
269
268
veor3q_u8 ( a, b, c)
270
269
}
271
-
270
+
272
271
#[ inline]
273
272
#[ cfg( not( target_feature = "sha3" ) ) ]
274
273
#[ target_feature( enable = "neon" ) ]
Original file line number Diff line number Diff line change @@ -226,7 +226,7 @@ impl ArchOps for X86Ops {
226
226
unsafe fn carryless_mul_11 ( & self , a : Self :: Vector , b : Self :: Vector ) -> Self :: Vector {
227
227
_mm_clmulepi64_si128 ( a, b, 0x11 )
228
228
}
229
-
229
+
230
230
#[ inline]
231
231
#[ cfg( any( feature = "vpclmulqdq" , feature = "avx512" ) ) ]
232
232
#[ target_feature( enable = "avx512f,avx512vl" ) ]
You can’t perform that action at this time.
0 commit comments