(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
vect/
pr86871.c
       1  /* { dg-do compile } */
       2  
       3  extern int b[];
       4  extern int c[];
       5  void g(int f) {
       6    for (; f; f++) {
       7      int d = 0;
       8      for (int e = -1; e <= 1; e++) {
       9        int a = f + e;
      10        if (a)
      11          d = *(c + a);
      12      }
      13      *(b + f) = d;
      14    }
      15   }