modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/execute/pr79286.c (about)

     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  }