(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
sse4_1-pr88189-2.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2 -msse4.1 -mno-avx -mfpmath=sse" } */
       3  
       4  __attribute__((noipa)) double
       5  f1 (double a, double b)
       6  {
       7    return a < 0 ? a : b;
       8  }
       9  
      10  __attribute__((noipa)) float
      11  f2 (float a, float b)
      12  {
      13    return a < 0 ? a : b;
      14  }
      15  
      16  /* { dg-final { scan-assembler-times "blendvp\[sd]" 2 } } */