(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
vect/
vect-cond-arith-8.c
       1  /* { dg-do compile } */
       2  
       3  void
       4  f (float *x, _Bool *cond, float *y)
       5  {
       6    for (int i = 0; i < 100; ++i)
       7      x[i] = cond[i] ? y[i] * 100 : y[i];
       8  }