PR rtl-optimization/88018
[official-gcc.git] / gcc / testsuite / c-c++-common / torture / pr58794-2.c
blob767798806db980585d7e4a30acacf524ef9c12f1
1 /* { dg-do compile } */
3 struct S
5 volatile int f;
6 } a;
8 unsigned int b;
10 static int *c[1][2] = {{0, (int *)&a.f}};
11 static unsigned int d;
13 int
14 main ()
16 for (; d < 1; d++)
17 for (; b < 1; b++)
18 *c[b][d + 1] = 0;
20 return 0;