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

     1  /* PR tree-optimization/82389 */
     2  
     3  void bar (short);
     4  
     5  void
     6  foo (void)
     7  {
     8    short a[5];
     9    int b;
    10    for (b = -1290603998; b < 5; b++)
    11      a[b] = 0;
    12    bar (a[3]);
    13  }