about summary refs log tree commit diff
path: root/sysdeps/ieee754/ldbl-opt/nldbl-getpayload.c
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2016-10-26 17:10:00 +0000
committerJoseph Myers <joseph@codesourcery.com>2016-10-26 17:10:00 +0000
commit873febb5dfbe67eb1c31ce900a20efe0a6ed6ecb (patch)
tree99a8aa14b238e44d62521c8f396d54a34ebfe081 /sysdeps/ieee754/ldbl-opt/nldbl-getpayload.c
parent726d48ec96f8b8a27e17cffaacb83588589e2f78 (diff)
downloadglibc-873febb5dfbe67eb1c31ce900a20efe0a6ed6ecb.tar.gz
glibc-873febb5dfbe67eb1c31ce900a20efe0a6ed6ecb.tar.xz
glibc-873febb5dfbe67eb1c31ce900a20efe0a6ed6ecb.zip
Add getpayloadl to libnldbl.
This patch adds getpayloadl to libnldbl, missed in my patch that
originally implemented getpayload functions.

Tested for powerpc.

	* sysdeps/ieee754/ldbl-opt/nldbl-getpayload.c: New file.
	* sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add
	getpayload.
	(CFLAGS-nldbl-getpayload.c): New variable.
Diffstat (limited to 'sysdeps/ieee754/ldbl-opt/nldbl-getpayload.c')
-rw-r--r--sysdeps/ieee754/ldbl-opt/nldbl-getpayload.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/sysdeps/ieee754/ldbl-opt/nldbl-getpayload.c b/sysdeps/ieee754/ldbl-opt/nldbl-getpayload.c
new file mode 100644
index 0000000000..3cdad0b2d6
--- /dev/null
+++ b/sysdeps/ieee754/ldbl-opt/nldbl-getpayload.c
@@ -0,0 +1,26 @@
+/* Compatibility routine for IEEE double as long double for getpayload.
+   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 "nldbl-compat.h"
+
+double
+attribute_hidden
+getpayloadl (const double *x)
+{
+  return getpayload (x);
+}