(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
execute/
pr98736.c
       1  /* PR tree-optimization/98736 */
       2  
       3  int a[6];
       4  char b, c;
       5  int main() {
       6    int d[4] = {0, 0, 0, 0};
       7    for (c = 0; c <= 5; c++) {
       8      for (b = 2; b != 0; b++)
       9        a[c] = 8;
      10      a[c] = d[3];
      11    }
      12    if (a[0] != 0)
      13      __builtin_abort();
      14  }