(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
sse4_1-blendvpd-1.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-msse4.1 -O2 -mno-sse4.2" } */
       3  /* { dg-final { scan-assembler-times {(?n)blendvpd[ \t]+%xmm[0-9]+} 1 } } */
       4  
       5  #include <immintrin.h>
       6  
       7  __m128d
       8  foo (__m128d a, __m128d b, __m128d c)
       9  {
      10    return _mm_blendv_pd (a, b, c);
      11  }