diff options
author | Florian Weimer <fweimer@redhat.com> | 2018-05-16 06:03:08 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2018-05-16 06:03:08 +0200 |
commit | 9761bf4dfae04016bccaa82414719523b090dd60 (patch) | |
tree | 1abcf3d350f8540e87f3850cb111a13cfaf66d8f /sysdeps/ieee754/ldbl-128 | |
parent | 69a01461ee1417578d2ba20aac935828b50f1118 (diff) | |
download | glibc-9761bf4dfae04016bccaa82414719523b090dd60.tar.gz glibc-9761bf4dfae04016bccaa82414719523b090dd60.tar.xz glibc-9761bf4dfae04016bccaa82414719523b090dd60.zip |
math: Merge strtod_nan_*.h into math-type-macros-*.h
This change will eventually make it possible to compile stdlib/strtod_nan_main.c as part of math/s_nan_template.c.
Diffstat (limited to 'sysdeps/ieee754/ldbl-128')
-rw-r--r-- | sysdeps/ieee754/ldbl-128/math-nan-payload-ldouble.h (renamed from sysdeps/ieee754/ldbl-128/strtod_nan_ldouble.h) | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sysdeps/ieee754/ldbl-128/strtod_nan_ldouble.h b/sysdeps/ieee754/ldbl-128/math-nan-payload-ldouble.h index 77d81acf33..e2f092d3e1 100644 --- a/sysdeps/ieee754/ldbl-128/strtod_nan_ldouble.h +++ b/sysdeps/ieee754/ldbl-128/math-nan-payload-ldouble.h @@ -1,4 +1,4 @@ -/* Convert string for NaN payload to corresponding NaN. For ldbl-128. +/* NaN payload handling for ldbl-128. Copyright (C) 1997-2018 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -16,8 +16,7 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ -#define FLOAT long double -#define SET_MANTISSA(flt, mant) \ +#define SET_NAN_PAYLOAD(flt, mant) \ do \ { \ union ieee854_long_double u; \ |