diff options
Diffstat (limited to 'src/port/pg_crc32c_sse42.c')
-rw-r--r-- | src/port/pg_crc32c_sse42.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/port/pg_crc32c_sse42.c b/src/port/pg_crc32c_sse42.c index a22a9dd78b..150d4cb15b 100644 --- a/src/port/pg_crc32c_sse42.c +++ b/src/port/pg_crc32c_sse42.c @@ -45,6 +45,7 @@ pg_comp_crc32c_sse42(pg_crc32c crc, const void *data, size_t len) p += 4; } #else + /* * Process four bytes at a time. (The eight byte instruction is not * available on the 32-bit x86 architecture). @@ -54,7 +55,7 @@ pg_comp_crc32c_sse42(pg_crc32c crc, const void *data, size_t len) crc = _mm_crc32_u32(crc, *((const unsigned int *) p)); p += 4; } -#endif /* __x86_64__ */ +#endif /* __x86_64__ */ /* Process any remaining bytes one at a time. */ while (p < pend) |