Ulrich Drepper 774a2669af Clean up FMA use
The macro's name should reflect that subtraction is being done.  And
use __builtin_fma, it seems to work after all.
2011-10-23 13:31:01 -04:00

7 lines
141 B
C

#if defined __FMA4__ || defined __FMA__
# define DLA_FMS(x,y,z) \
__builtin_fma (x, y, -z)
#endif
#include "sysdeps/ieee754/dbl-64/dla.h"