On Fri, 22 May 2026 at 11:01, Naveen SiddeGowda < [email protected]> wrote:
> Hi, > > Please consider this as a gentle reminder to review the patch at the > following link:- > https://gcc.gnu.org/pipermail/gcc-patches/2026-May/715699.html > > Hello, - /* The immediate must repeat every eight bytes. */ - unsigned int nbytes = bytes.length (); - for (unsigned i = 8; i < nbytes; ++i) - if (bytes[i] != bytes[i - 8]) +/* The immediate must normally repeat every eight bytes. For MOV + also allow a 128-bit AdvSIMD constant whose high 64 bits are zero + since it can be materialized using a 64-bit MOVI. */ +unsigned int nbytes = bytes.length (); +unsigned int output_width = 0; Something obvious, Indentation is not correct here in that patch. You may want to fix that. Thanks, > Naveen >
