Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kimwalisch committed Nov 11, 2024
1 parent 17f51db commit 103eb95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/x86/cpuid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ bool has_cpuid_avx512_bw()

// AND_PreSieveTables_avx512 requires AVX512F, AVX512BW
return ((abcd[1] & bit_AVX512F) == bit_AVX512F &&
(abcd[1] & bit_AVX512F) == bit_AVX512BW);
(abcd[1] & bit_AVX512BW) == bit_AVX512BW);
}

bool has_cpuid_avx512_vbmi2()
Expand Down

0 comments on commit 103eb95

Please sign in to comment.