Re: [PATCH] aarch64: Fix pointer parameter type in LD1 Neon intrinsics

2021-10-14 Thread Richard Sandiford via Gcc-patches
Jonathan Wright via Gcc-patches writes: > The pointer parameter to load a vector of signed values should itself > be a signed type. This patch fixes two instances of this unsigned- > signed implicit conversion in arm_neon.h. > > Tested relevant intrinsics with -Wpointer-sign and warnings no longer

[PATCH] aarch64: Fix pointer parameter type in LD1 Neon intrinsics

2021-10-14 Thread Jonathan Wright via Gcc-patches
The pointer parameter to load a vector of signed values should itself be a signed type. This patch fixes two instances of this unsigned- signed implicit conversion in arm_neon.h. Tested relevant intrinsics with -Wpointer-sign and warnings no longer present. Ok for master? Thanks, Jonathan ---