diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2018-04-04 11:20:53 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2018-04-04 11:25:12 +0300 |
commit | a3c64ed6ce0da2d18e56179cac8bd752cf79f4b7 (patch) | |
tree | 443252deb6e44d22b128e47573d48da3015e3646 /src | |
parent | 80bfdc0ccda003a7bb7fc25ffea530d3d9d8121a (diff) | |
download | postgresql-a3c64ed6ce0da2d18e56179cac8bd752cf79f4b7.tar.gz postgresql-a3c64ed6ce0da2d18e56179cac8bd752cf79f4b7.zip |
Fix incorrect description of USE_SLICING_BY_8_CRC32C.
And a typo in the description of USE_SSE42_CRC32C_WITH_RUNTIME_CHECK,
spotted by Daniel Gustafsson.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/pg_config.h.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index f54bbedac5a..79986e92411 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -849,13 +849,13 @@ /* Use replacement snprintf() functions. */ #undef USE_REPL_SNPRINTF -/* 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). */ #undef USE_SLICING_BY_8_CRC32C /* 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. */ #undef USE_SSE42_CRC32C_WITH_RUNTIME_CHECK /* Define to build with systemd support. (--with-systemd) */ |