Fix signedness error in 9f225e992 for gcc

John Naylor <john.naylor@postgresql.org>

Commit: de7c6fe8347ab726c80ebbfcdb57f4b714d5243d
Author: John Naylor <john.naylor@postgresql.org>
Date: 2024-03-06T08:55:55Z
Releases: 17.0
Fix signedness error in 9f225e992 for gcc

The first argument of vshrq_n_s8 needs to be a signed vector type,
but it was passed unsigned. Clang is more lax with conversion, but
gcc needs a cast.

Fix by me, tested by Masahiko Sawada

Per buildfarm members splitfin, batta, widowbird, snakefly, parula,
massasauga

Discussion: https://postgr.es/m/20240306074106.mg6w4koohdlworbs%40alap3.anarazel.de

Files

PathChange+/−
src/include/port/simd.h modified +1 −1

Discussion