about summary refs log tree commit diff
path: root/math/s_nextdownl.c
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 /math/s_nextdownl.c
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 'math/s_nextdownl.c')
-rw-r--r--math/s_nextdownl.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/math/s_nextdownl.c b/math/s_nextdownl.c
deleted file mode 100644
index e7607f5ad0..0000000000
--- a/math/s_nextdownl.c
+++ /dev/null
@@ -1,29 +0,0 @@
-/* Return the greatest floating-point number less than X.
-   Copyright (C) 2016 Free Software Foundation, Inc.
-   This file is part of the GNU C Library.
-
-   The GNU C Library is free software; you can redistribute it and/or
-   modify it under the terms of the GNU Lesser General Public
-   License as published by the Free Software Foundation; either
-   version 2.1 of the License, or (at your option) any later version.
-
-   The GNU C Library is distributed in the hope that it will be useful,
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-   Lesser General Public License for more details.
-
-   You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, see
-   <http://www.gnu.org/licenses/>.  */
-
-#include <math.h>
-#include <math_private.h>
-
-/* Return the greatest floating-point number less than X.  */
-long double
-__nextdownl (long double x)
-{
-  return -__nextupl (-x);
-}
-
-weak_alias (__nextdownl, nextdownl)