(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
vect/
O3-pr45971.c
       1  /* { dg-do compile } */
       2  /* { dg-require-effective-target vect_int } */
       3  
       4  void
       5  foo (int *x, int *y)
       6  {
       7    int i;
       8    for (i = 0; i < 11; i++)
       9      y[i] = (x[i] == 1) ? i + 1 : -(i + 1);
      10  }
      11  
      12