(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
vect/
O3-pr85794.c
       1  /* { dg-do compile } */
       2  
       3  int a, b, *c, d;
       4  int *f[6];
       5  
       6  void
       7  foo (void)
       8  {
       9    for (b = 1; b >= 0; b--)
      10      for (d = 0; d <= 3; d++)
      11        a |= f[b * 5] != c;
      12  }