1 /* { dg-do compile { target { ! { ia32 } } } } */
2 /* { dg-options "-O2 -mx32 -maddress-mode=long -ftree-vectorize" } */
3 
4 struct s2{
5   int n[24 -1][24 -1][24 -1];
6 };
7 
8 struct test2{
9   struct s2 e;
10 };
11 
12 struct test2 tmp2[4];
13 
main1()14 void main1 ()
15 {
16   int i,j;
17 
18   for (i = 0; i < 24 -4; i++)
19       for (j = 0; j < 24 -4; j++)
20           tmp2[2].e.n[1][i][j] = 8;
21 }
22