(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
execute/
pr79286.c
       1  int a = 0, c = 0;
       2  static int d[][8] = {};
       3  
       4  int main ()
       5  {
       6    int e;
       7    for (int b = 0; b < 4; b++)
       8      {
       9        __builtin_printf ("%d\n", b, e);
      10        while (a && c++)
      11  	e = d[300000000000000000][0];
      12      }
      13  
      14    return 0;
      15  }