https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118149
Christoph Müllner <cmuellner at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Last reconfirmed| |2024-12-20 Status|UNCONFIRMED |ASSIGNED Ever confirmed|0 |1 --- Comment #8 from Christoph Müllner <cmuellner at gcc dot gnu.org> --- Thanks for reporting! I've analyzed this, and indeed, this got fixed with the recent fix for PR117830. When calculating the lane allocation for the blended sequence, we did: while (lane_assignment[l] != 0) l++; That got fixed so that we won't access out of bounds. I've sent a patch that adds the reduced testcase to the test suite.