(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr91178-2.c
       1  /* { dg-do compile } */
       2  /* { dg-require-effective-target size32plus } */
       3  
       4  int a[100][70304];
       5  int b[100];
       6  void c()
       7  {
       8    for (int d = 2; d < 4; d++)
       9      for (int e = 2; e <= 50; e++)
      10        for (int f = 32; f <= 38; f++)
      11  	b[d + f] -= a[e][5];
      12  }