diff options
author | Jakub Jelinek <jakub@redhat.com> | 2010-10-15 15:26:06 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2010-10-15 15:26:06 -0400 |
commit | 3e692e0518b4f4679352d25102bd47cf3f85c592 (patch) | |
tree | a3f4cefdf037d6c72a8267277dbe0bd0922f2d3e /sysdeps/ieee754/ldbl-64-128 | |
parent | f3f7372de1401b99f0a318ce09caf73e42d6f022 (diff) | |
download | glibc-3e692e0518b4f4679352d25102bd47cf3f85c592.tar.gz glibc-3e692e0518b4f4679352d25102bd47cf3f85c592.tar.xz glibc-3e692e0518b4f4679352d25102bd47cf3f85c592.zip |
Implement fmal, some fma bugfixes
Diffstat (limited to 'sysdeps/ieee754/ldbl-64-128')
-rw-r--r-- | sysdeps/ieee754/ldbl-64-128/s_fmal.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sysdeps/ieee754/ldbl-64-128/s_fmal.c b/sysdeps/ieee754/ldbl-64-128/s_fmal.c new file mode 100644 index 0000000000..218aa52b35 --- /dev/null +++ b/sysdeps/ieee754/ldbl-64-128/s_fmal.c @@ -0,0 +1,5 @@ +#include <math_ldbl_opt.h> +#undef weak_alias +#define weak_alias(n,a) +#include <sysdeps/ieee754/ldbl-128/s_fmal.c> +long_double_symbol (libm, __fmal, fmal); |