diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2018-04-04 11:33:39 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2018-04-04 11:33:39 +0300 |
commit | 638a199fa9459dac42b588ccfcf7003539f37416 (patch) | |
tree | a718fce487b5a089f50f7ed1c164a61019c1ed52 | |
parent | 8989f52b1b0636969545e6c8f6c813bc563ebcf5 (diff) | |
download | postgresql-638a199fa9459dac42b588ccfcf7003539f37416.tar.gz postgresql-638a199fa9459dac42b588ccfcf7003539f37416.zip |
Also fix the descriptions in pg_config.h.win32.
I missed pg_config.h.win32 in the previous commit that fixed these in
pg_config.h.in.
-rw-r--r-- | src/include/pg_config.h.win32 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/pg_config.h.win32 b/src/include/pg_config.h.win32 index b0477f02311..bc437b08f0c 100644 --- a/src/include/pg_config.h.win32 +++ b/src/include/pg_config.h.win32 @@ -674,7 +674,7 @@ /* Use replacement snprintf() functions. */ #define USE_REPL_SNPRINTF 1 -/* Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check. */ +/* Define to 1 to use software CRC-32C implementation (slicing-by-8). */ #if (_MSC_VER < 1500) #define USE_SLICING_BY_8_CRC32C 1 #endif @@ -682,7 +682,7 @@ /* Define to 1 use Intel SSE 4.2 CRC instructions. */ /* #undef USE_SSE42_CRC32C */ -/* Define to 1 to use Intel SSSE 4.2 CRC instructions with a runtime check. */ +/* Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check. */ #if (_MSC_VER >= 1500) #define USE_SSE42_CRC32C_WITH_RUNTIME_CHECK #endif |