1 /* { dg-do compile } */
2 /* { dg-require-effective-target size32plus } */
3 
4 int a;
5 extern int f[10][91125];
6 int b[50];
c()7 void c()
8 {
9   for (int d = 6; d <= a; d++)
10     for (int e = 16; e <= 24; e++)
11       b[e] -= f[d][d];
12 }
13