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/x86_64 | |
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/x86_64')
-rw-r--r-- | sysdeps/x86_64/dla.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sysdeps/x86_64/dla.h b/sysdeps/x86_64/dla.h new file mode 100644 index 0000000000..bb6c8c4be0 --- /dev/null +++ b/sysdeps/x86_64/dla.h @@ -0,0 +1,9 @@ +#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 + +#include "sysdeps/ieee754/dbl-64/dla.h" |