File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2037,11 +2037,11 @@ if test x"$USE_SSE42_CRC32C" = x"1"; then
20372037 AC_MSG_RESULT(SSE 4.2)
20382038else
20392039 if test x"$USE_SSE42_CRC32C_WITH_RUNTIME_CHECK" = x"1"; then
2040- AC_DEFINE(USE_SSE42_CRC32C_WITH_RUNTIME_CHECK, 1, [Define to 1 to use Intel SSSE 4.2 CRC instructions with a runtime check.])
2040+ AC_DEFINE(USE_SSE42_CRC32C_WITH_RUNTIME_CHECK, 1, [Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check.])
20412041 PG_CRC32C_OBJS="pg_crc32c_sse42.o pg_crc32c_sb8.o pg_crc32c_choose.o"
20422042 AC_MSG_RESULT(SSE 4.2 with runtime check)
20432043 else
2044- AC_DEFINE(USE_SLICING_BY_8_CRC32C, 1, [Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check .])
2044+ AC_DEFINE(USE_SLICING_BY_8_CRC32C, 1, [Define to 1 to use software CRC-32C implementation (slicing-by-8) .])
20452045 PG_CRC32C_OBJS="pg_crc32c_sb8.o"
20462046 AC_MSG_RESULT(slicing-by-8)
20472047 fi
Original file line number Diff line number Diff line change 893893/* Use replacement snprintf() functions. */
894894#undef USE_REPL_SNPRINTF
895895
896- /* Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check . */
896+ /* Define to 1 to use software CRC-32C implementation (slicing-by-8) . */
897897#undef USE_SLICING_BY_8_CRC32C
898898
899899/* Define to 1 use Intel SSE 4.2 CRC instructions. */
900900#undef USE_SSE42_CRC32C
901901
902- /* Define to 1 to use Intel SSSE 4.2 CRC instructions with a runtime check. */
902+ /* Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check. */
903903#undef USE_SSE42_CRC32C_WITH_RUNTIME_CHECK
904904
905905/* Define to build with systemd support. (--with-systemd) */
You can’t perform that action at this time.
0 commit comments