mirror of git://sourceware.org/git/glibc.git
Use dbl-64 fma for MIPS64.
This commit is contained in:
parent
f93d7902de
commit
d97b8a3d21
|
@ -1,5 +1,8 @@
|
||||||
2012-06-01 Joseph Myers <joseph@codesourcery.com>
|
2012-06-01 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
* sysdeps/mips/mips64/n32/s_fma.c: New file.
|
||||||
|
* sysdeps/mips/mips64/n64/s_fma.c: Likewise.
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/mips/Makefile (abi-n32-condition): Fix
|
* sysdeps/unix/sysv/linux/mips/Makefile (abi-n32-condition): Fix
|
||||||
typo.
|
typo.
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
/* MIPS long double is implemented in software by fp-bit (as of GCC
|
||||||
|
4.7) without support for exceptions or rounding modes, so the fma
|
||||||
|
implementation in terms of long double is slow and will not produce
|
||||||
|
correctly rounding results. */
|
||||||
|
|
||||||
|
#include <sysdeps/ieee754/dbl-64/s_fma.c>
|
|
@ -0,0 +1,6 @@
|
||||||
|
/* MIPS long double is implemented in software by fp-bit (as of GCC
|
||||||
|
4.7) without support for exceptions or rounding modes, so the fma
|
||||||
|
implementation in terms of long double is slow and will not produce
|
||||||
|
correctly rounding results. */
|
||||||
|
|
||||||
|
#include <sysdeps/ieee754/dbl-64/s_fma.c>
|
Loading…
Reference in New Issue