(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
vect/
vect-cond-12.c
       1  /* { dg-do compile } */
       2  
       3  int
       4  f (int *x, short *y)
       5  {
       6    int res = 100;
       7    for (int i = 0; i < 40; ++i)
       8      {
       9        if (y[i] > 1)
      10  	res = x[i];
      11        x[i] += y[i];
      12      }
      13    return res;
      14  }