diff options
author | Paul E. Murphy <murphyp@linux.vnet.ibm.com> | 2017-05-04 14:47:27 -0300 |
---|---|---|
committer | Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com> | 2017-05-04 14:47:27 -0300 |
commit | 593bf7189a82b9b2874d41c71cb2109482a9f201 (patch) | |
tree | 6a1b514c390699f658e9b182345c1a03dbe45e14 /sysdeps/ieee754/ldbl-128/s_isnanl.c | |
parent | 4c3992fc459322a7c712700ba3244fcb125163d7 (diff) | |
download | glibc-593bf7189a82b9b2874d41c71cb2109482a9f201.zip glibc-593bf7189a82b9b2874d41c71cb2109482a9f201.tar.gz glibc-593bf7189a82b9b2874d41c71cb2109482a9f201.tar.bz2 |
ldbl-128: Use mathx_hidden_def inplace of hidden_def
This provides a extra macro expansion before invoking
the hidden_def macro. This is necessary to build the
ldbl-128 files as float128 correctly.
* sysdeps/generic/math_private.h:
(mathx_hidden_def): New macro.
* sysdeps/ieee754/ldbl-128/s_finitel.c: Replace hidden_def with
the above.
* sysdeps/ieee754/ldbl-128/s_isinfl.c: Likewise.
* sysdeps/ieee754/ldbl-128/s_isnanl.c: Likewise.
Diffstat (limited to 'sysdeps/ieee754/ldbl-128/s_isnanl.c')
-rw-r--r-- | sysdeps/ieee754/ldbl-128/s_isnanl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/ldbl-128/s_isnanl.c b/sysdeps/ieee754/ldbl-128/s_isnanl.c index 1dee642..80f97fe 100644 --- a/sysdeps/ieee754/ldbl-128/s_isnanl.c +++ b/sysdeps/ieee754/ldbl-128/s_isnanl.c @@ -34,5 +34,5 @@ int __isnanl(_Float128 x) hx = 0x7fff000000000000LL - hx; return (int)((u_int64_t)hx>>63); } -hidden_def (__isnanl) +mathx_hidden_def (__isnanl) weak_alias (__isnanl, isnanl) |