(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
powerpc/
vsx-sfminmax.c
       1  /* { dg-do compile { target { powerpc*-*-* } } } */
       2  /* { dg-skip-if "" { powerpc*-*-darwin* } } */
       3  /* { dg-require-effective-target powerpc_vsx_ok } */
       4  /* { dg-options "-O2 -mdejagnu-cpu=power7 -ffast-math" } */
       5  /* { dg-final { scan-assembler "xsmaxdp" } } */
       6  /* { dg-final { scan-assembler "xsmindp" } } */
       7  
       8  float
       9  do_fmin (float a, float b)
      10  {
      11    return __builtin_fminf (a, b);
      12  }
      13  
      14  float
      15  do_fmax (float a, float b)
      16  {
      17    return __builtin_fmaxf (a, b);
      18  }