We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 937e4a8 commit 40e2b9cCopy full SHA for 40e2b9c
src/arch/mod.rs
@@ -70,7 +70,7 @@ pub(crate) unsafe fn update(state: u64, bytes: &[u8], params: CrcParams) -> u64
70
pub(crate) unsafe fn update(state: u64, bytes: &[u8], params: CrcParams) -> u64 {
71
use std::arch::is_x86_feature_detected;
72
73
- if bytes.len() >= 256
+ if bytes.len() >= 256
74
&& is_x86_feature_detected!("vpclmulqdq")
75
&& is_x86_feature_detected!("avx512f")
76
&& is_x86_feature_detected!("avx512vl")
0 commit comments