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