(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
vect/
pr93069.c
       1  /* PR target/93069 */
       2  /* { dg-do assemble { target vect_simd_clones } } */
       3  /* { dg-options "-O2 -fopenmp-simd" } */
       4  
       5  #pragma omp declare simd
       6  int
       7  foo (int x, int y)
       8  {
       9    return x == 0 ? x : y;
      10  }