Skip to content

Commit

Permalink
format again.
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanHenson committed Jan 23, 2024
1 parent af2952e commit 24165d7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions source/crc64.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,7 @@ static uint64_t (*s_crc64xz_fn_ptr)(const uint8_t *input, int length, uint64_t p
uint64_t aws_checksums_crc64xz(const uint8_t *input, int length, uint64_t previousCrc64) {

if (AWS_UNLIKELY(!s_crc64xz_fn_ptr)) {
#if INTPTR_MAX == INT64_MAX && defined(AWS_HAVE_CLMUL) && \
!(defined(_MSC_VER) && _MSC_VER < 1920)
#if INTPTR_MAX == INT64_MAX && defined(AWS_HAVE_CLMUL) && !(defined(_MSC_VER) && _MSC_VER < 1920)
if (aws_cpu_has_feature(AWS_CPU_FEATURE_AVX512) && aws_cpu_has_feature(AWS_CPU_FEATURE_CLMUL) &&
aws_cpu_has_feature(AWS_CPU_FEATURE_VPCLMULQDQ)) {
s_crc64xz_fn_ptr = aws_checksums_crc64xz_intel_clmul;
Expand Down

0 comments on commit 24165d7

Please sign in to comment.