diff options
author | Tom Lane | 2024-05-14 20:34:50 +0000 |
---|---|---|
committer | Tom Lane | 2024-05-14 20:34:50 +0000 |
commit | da256a4a7fdcca35fe7ca808686ad3de6ee22306 (patch) | |
tree | 863d6a21cd148b40add73ae45bdedcf0acc001ee /src/port | |
parent | 3ddbac368c205fce1f293de1fe60c1b479800746 (diff) |
Pre-beta mechanical code beautification.
Run pgindent, pgperltidy, and reformat-dat-files.
The pgindent part of this is pretty small, consisting mainly of
fixing up self-inflicted formatting damage from patches that
hadn't bothered to add their new typedefs to typedefs.list.
In order to keep it from making anything worse, I manually added
a dozen or so typedefs that appeared in the existing typedefs.list
but not in the buildfarm's list. Perhaps we should formalize that,
or better find a way to get those typedefs into the automatic list.
pgperltidy is as opinionated as always, and reformat-dat-files too.
Diffstat (limited to 'src/port')
-rw-r--r-- | src/port/pg_popcount_avx512.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/port/pg_popcount_avx512.c b/src/port/pg_popcount_avx512.c index a67092b9c47..9d3149e2d00 100644 --- a/src/port/pg_popcount_avx512.c +++ b/src/port/pg_popcount_avx512.c @@ -92,7 +92,7 @@ pg_popcount_masked_avx512(const char *buf, int bytes, bits8 mask) const char *final; int tail_idx; __mmask64 bmask = ~UINT64CONST(0); - const __m512i maskv = _mm512_set1_epi8(mask); + const __m512i maskv = _mm512_set1_epi8(mask); /* * Align buffer down to avoid double load overhead from unaligned access. |