pgsql: Fix __attribute__((target(...))) usage.

From: Nathan Bossart <nathan(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix __attribute__((target(...))) usage.
Date: 2024-11-07 21:28:39
Message-ID: E1t9A3T-000gb6-FE@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix __attribute__((target(...))) usage.

The commonly supported way to specify multiple target options is to
surround the entire list with quotes and to use a comma (with no
extra spaces) as the delimiter.

Oversight in commit f78667bd91.

Discussion: https://postgr.es/m/Zy0jya8nF8CPpv3B%40nathan

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/41b98ddb77bf49433f174f03383533dd09bdefec

Modified Files
--------------
config/c-compiler.m4 | 2 +-
configure | 2 +-
meson.build | 2 +-
src/port/pg_popcount_avx512.c | 4 ++--
4 files changed, 5 insertions(+), 5 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Andrew Dunstan 2024-11-07 23:19:38 pgsql: Provide lstat() for Windows.
Previous Message Nathan Bossart 2024-11-07 20:00:10 pgsql: Use __attribute__((target(...))) for AVX-512 support.