aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/aarch64/fnmadd-fastmath.c
blob: 9c115df08ef1e865043c4f26a283f76384d509b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* { 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 } } */