Fix compiler warning for pg_lfind32().
authorNathan Bossart <nathan@postgresql.org>
Wed, 27 Mar 2024 01:27:46 +0000 (20:27 -0500)
committerNathan Bossart <nathan@postgresql.org>
Wed, 27 Mar 2024 01:27:46 +0000 (20:27 -0500)
commit1f42337be535243e665f85916ce21b2d85d9f2b3
tree7ae19a8a5d448ef9d8ce1bfed6ea9a64b8467e7c
parentffa9bb53ecb1cec14039d0c78e6f941565e8f986
Fix compiler warning for pg_lfind32().

The newly-introduced "one_by_one" label produces -Wunused-label
warnings when building without SIMD support.  To fix, move the
label into the SIMD section of this function.

Oversight in commit 7644a7340c.

Reported-by: Tom Lane
Discussion: https://postgr.es/m/3189995.1711495704%40sss.pgh.pa.us
src/include/port/pg_lfind.h