aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/x86_64/fpu/dla.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/sysdeps/x86_64/fpu/dla.h b/sysdeps/x86_64/fpu/dla.h
index fa2d52bbf0..688efa0f5b 100644
--- a/sysdeps/x86_64/fpu/dla.h
+++ b/sysdeps/x86_64/fpu/dla.h
@@ -1,17 +1,8 @@
#include <features.h>
#ifdef __FMA4__
-# if __GNUC_PREREQ (4, 6)
-# define DLA_FMS(x,y,z) \
+# define DLA_FMS(x,y,z) \
__builtin_fma (x, y, -(z))
-# else
-# define DLA_FMS(x,y,z) \
- ({ double __z; \
- asm ("vfmsubsd %3, %2, %1, %0" \
- : "=x" (__z) \
- : "x" ((double) (x)), "xm" ((double) (y)) , "x" ((double) (z))); \
- __z; })
-# endif
#endif
#include "sysdeps/ieee754/dbl-64/dla.h"