https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113967
Andrew Pinski <pinskia at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|0 |1 Last reconfirmed| |2024-02-17 Status|UNCONFIRMED |NEW --- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> --- Reduced testcase that fails on most (all) targets even: ``` typedef unsigned short W __attribute__((__vector_size__ (8))); void bar3 (W *x1) { W x = *x1; W y = {}; __builtin_memmove (&y, 1 + (char *) &x, 2); *x1 = y; } ```