Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyMusatkin committed Sep 12, 2024
1 parent dc10092 commit 8ff1ccb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/crc64.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ uint64_t aws_checksums_crc64nvme(const uint8_t *input, int length, uint64_t prev
s_crc64nvme_fn_ptr = aws_checksums_crc64nvme_intel_avx512;
} else
# endif
# if defined(AWS_HAVE_CLMUL) && defined(AWS_HAVE_AVX2_INTRINSICS)
if (aws_cpu_has_feature(AWS_CPU_FEATURE_CLMUL) && aws_cpu_has_feature(AWS_CPU_FEATURE_AVX2)) {
# if defined(AWS_HAVE_CLMUL) && defined(AWS_HAVE_AVX2_INTRINSICS)
if (aws_cpu_has_feature(AWS_CPU_FEATURE_CLMUL) && aws_cpu_has_feature(AWS_CPU_FEATURE_AVX2)) {
s_crc64nvme_fn_ptr = aws_checksums_crc64nvme_intel_clmul;
} else {
s_crc64nvme_fn_ptr = aws_checksums_crc64nvme_sw;
Expand Down

0 comments on commit 8ff1ccb

Please sign in to comment.