PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr54157.c
blob26318677d590695b76a30a22757c192f149c923b
1 /* { dg-do compile { target { ! ia32 } } } */
2 /* { dg-options "-O2 -mx32 -maddress-mode=long -ftree-vectorize" } */
4 struct s2{
5 int n[24 -1][24 -1][24 -1];
6 };
8 struct test2{
9 struct s2 e;
12 struct test2 tmp2[4];
14 void main1 ()
16 int i,j;
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;