about summary refs log tree commit diff
path: root/sysdeps/ieee754/ldbl-opt
diff options
context:
space:
mode:
authorPaul E. Murphy <murphyp@linux.vnet.ibm.com>2016-08-24 16:05:28 -0500
committerPaul E. Murphy <murphyp@linux.vnet.ibm.com>2016-09-01 09:31:03 -0500
commitee8a49071cba845b2ee5060b0d4238f9534b5ee3 (patch)
tree7b15c9a6d0d64c04966a7ddf5bc23e0e57117a25 /sysdeps/ieee754/ldbl-opt
parent7b7c39450b3c4ab35b4960346e61d7b177ee728e (diff)
downloadglibc-ee8a49071cba845b2ee5060b0d4238f9534b5ee3.tar.gz
glibc-ee8a49071cba845b2ee5060b0d4238f9534b5ee3.tar.xz
glibc-ee8a49071cba845b2ee5060b0d4238f9534b5ee3.zip
Make common nextdown implementation generic.
With the exception of those machines using the ldbl-opt in
an Implies file, this is a trivial transformation.

nextdownl is not subject to the non-trivial versioning rules
of the other generated functions, so to keep things simple,
it is handled as a one-off case in ldbl-opt to preserve the
existing behavior.
Diffstat (limited to 'sysdeps/ieee754/ldbl-opt')
-rw-r--r--sysdeps/ieee754/ldbl-opt/s_nextdownl.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sysdeps/ieee754/ldbl-opt/s_nextdownl.c b/sysdeps/ieee754/ldbl-opt/s_nextdownl.c
new file mode 100644
index 0000000000..c92c02edf6
--- /dev/null
+++ b/sysdeps/ieee754/ldbl-opt/s_nextdownl.c
@@ -0,0 +1,5 @@
+/* nextdownl is not subject to complex aliasing rules.  It was
+   added in glibc 2.24.  */
+#define declare_mgen_alias(from, to) weak_alias (M_SUF (from), M_SUF (to))
+#include <math-type-macros-ldouble.h>
+#include <s_nextdown_template.c>