1 /* Copyright (C) 2002 by Red Hat, Incorporated. All rights reserved.
3 * Permission to use, copy, modify, and distribute this software
4 * is freely granted, provided that this notice is preserved.
10 float fmaf(float x
, float y
, float z
)
18 /* Let the implementation handle this. */
22 #ifdef _DOUBLE_IS_32BITS
25 double fma(double x
, double y
, double z
)
33 return (double) fmaf((float) x
, (float) y
, (float) z
);
36 #endif /* defined(_DOUBLE_IS_32BITS) */