blob: f10da6ce7526d4aca84541af49f642260aa38fa3 [file] [log] [blame]
/* PR tree-optimization/56448 */
volatile int a[1];
int b;
void
foo ()
{
for (;;)
{
int *c[3][6] = { 0, 0, 0, &b, 0, 0, 0, 0, &b, 0, 0, 0, 0, 0, 0, 0, &b, (int *) &a[0] };
b = *c[2][5];
}
}