diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-10-23 12:50:28 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-10-23 12:50:28 -0400 |
commit | c8b3296bbeee2f482354f833f506ac91d142e147 (patch) | |
tree | b3d525545e10ae8def4923ca8d942939098c645f /sysdeps/ieee754/dbl-64/dla.h | |
parent | 246ad57ad6201ce1bc8bb8cd0c0d3db2cb8cf18d (diff) | |
download | glibc-c8b3296bbeee2f482354f833f506ac91d142e147.tar.gz glibc-c8b3296bbeee2f482354f833f506ac91d142e147.tar.xz glibc-c8b3296bbeee2f482354f833f506ac91d142e147.zip |
Clean up last dla.h change
Diffstat (limited to 'sysdeps/ieee754/dbl-64/dla.h')
-rw-r--r-- | sysdeps/ieee754/dbl-64/dla.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/sysdeps/ieee754/dbl-64/dla.h b/sysdeps/ieee754/dbl-64/dla.h index 0ca87620cb..af202ad7a7 100644 --- a/sysdeps/ieee754/dbl-64/dla.h +++ b/sysdeps/ieee754/dbl-64/dla.h @@ -35,18 +35,6 @@ /* IEEE double. */ /***********************************************************************/ -/* We can use fma instructions if available. */ -#if defined __x86_64__ || (defined __i386__ && defined __SSE2_MATH__) -# ifdef __FMA4__ -# define DLA_FMA(x,y,z) \ - ({ double __zz; \ - asm ("vfmsubsd %3, %2, %1, %0" \ - : "=x" (__zz) : "x" (x), "xm" (y), "x" (z)); \ - __zz; }) -# endif -#endif - - /* CN = 1+2**27 = '41a0000002000000' IEEE double format */ #define CN 134217729.0 |