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 @@ -1941,11 +1941,11 @@ if test x"$USE_SSE42_CRC32C" = x"1"; then
1941
1941
AC_MSG_RESULT(SSE 4.2)
1942
1942
else
1943
1943
if test x"$USE_SSE42_CRC32C_WITH_RUNTIME_CHECK" = x"1"; then
1944
- AC_DEFINE(USE_SSE42_CRC32C_WITH_RUNTIME_CHECK, 1, [Define to 1 to use Intel SSSE 4.2 CRC instructions with a runtime check.])
1944
+ AC_DEFINE(USE_SSE42_CRC32C_WITH_RUNTIME_CHECK, 1, [Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check.])
1945
1945
PG_CRC32C_OBJS="pg_crc32c_sse42.o pg_crc32c_sb8.o pg_crc32c_choose.o"
1946
1946
AC_MSG_RESULT(SSE 4.2 with runtime check)
1947
1947
else
1948
- AC_DEFINE(USE_SLICING_BY_8_CRC32C, 1, [Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check .])
1948
+ AC_DEFINE(USE_SLICING_BY_8_CRC32C, 1, [Define to 1 to use software CRC-32C implementation (slicing-by-8) .])
1949
1949
PG_CRC32C_OBJS="pg_crc32c_sb8.o"
1950
1950
AC_MSG_RESULT(slicing-by-8)
1951
1951
fi
Original file line number Diff line number Diff line change 849
849
/* Use replacement snprintf() functions. */
850
850
#undef USE_REPL_SNPRINTF
851
851
852
- /* Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check . */
852
+ /* Define to 1 to use software CRC-32C implementation (slicing-by-8) . */
853
853
#undef USE_SLICING_BY_8_CRC32C
854
854
855
855
/* Define to 1 use Intel SSE 4.2 CRC instructions. */
856
856
#undef USE_SSE42_CRC32C
857
857
858
- /* Define to 1 to use Intel SSSE 4.2 CRC instructions with a runtime check. */
858
+ /* Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check. */
859
859
#undef USE_SSE42_CRC32C_WITH_RUNTIME_CHECK
860
860
861
861
/* Define to build with systemd support. (--with-systemd) */
You can’t perform that action at this time.
0 commit comments