https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108316
Jakub Jelinek <jakub at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jakub at gcc dot gnu.org
--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Small tweak to the testcase (C, no UB):
extern _Bool a[];
void
foo (short i, int b[][64][1])
{
for (; i < 64; i += 4)
a[i] = b[0][i] != 0;
}
