ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gcc.target/aarch64/fnmadd-fastmath.c

20 lines
436 B
C

/* { dg-do compile } */
/* { dg-options "-O2 -ffast-math" } */
extern double fma (double, double, double);
extern float fmaf (float, float, float);
double test_fma1 (double x, double y, double z)
{
return - fma (x, y, z);
}
float test_fma2 (float x, float y, float z)
{
return - fmaf (x, y, z);
}
/* { dg-final { scan-assembler-times "fnmadd\td\[0-9\]" 1 } } */
/* { dg-final { scan-assembler-times "fnmadd\ts\[0-9\]" 1 } } */