(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr82389.c
       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  }