Skip to content

Commit

Permalink
compile guard on the sse cmul fallback.
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanHenson committed Jan 29, 2024
1 parent 34de264 commit 1fa581a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/intel/intrin/crc32c_sse42_avx512.c
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ uint32_t aws_checksums_crc32c_intel_avx512_with_sse_fallback(const uint8_t *inpu
}
#endif

#if !defined(_MSC_VER)
#if defined(AWS_ARCH_INTEL_X64) && !defined(_MSC_VER)
if (detected_sse42 && detected_clmul) {
// this function is an entry point on its own. It inverts the crc passed to it
// does its thing and then inverts it upon return. In order to keep
Expand Down

0 comments on commit 1fa581a

Please sign in to comment.