]> sourceware.org Git - glibc.git/commitdiff
Use libm_alias_double for dbl-64 frexp.
authorJoseph Myers <joseph@codesourcery.com>
Tue, 3 Oct 2017 20:56:46 +0000 (20:56 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Tue, 3 Oct 2017 20:56:46 +0000 (20:56 +0000)
This patch makes dbl-64 frexp use libm_alias_double.  Both the dbl-64
and dbl-64/wordsize-64 versions are changed; the ldbl-opt version is
made to define only the libc frexpl compat symbol, now the generic
code handles the libm compat symbol automatically.

Tested for x86_64, and verified with build-many-glibcs.py that
installed stripped shared libraries are unchanged by this patch.

* sysdeps/ieee754/dbl-64/s_frexp.c: Include <libm-alias-double.h>.
(frexp): Define using libm_alias_double.
* sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: Include
<libm-alias-double.h>.
(frexp): Define using libm_alias_double.
* sysdeps/ieee754/ldbl-opt/s_frexp.c (frexpl): Only define libc
compat symbol here.

ChangeLog
sysdeps/ieee754/dbl-64/s_frexp.c
sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c
sysdeps/ieee754/ldbl-opt/s_frexp.c

index 6a028845c46998d76ecefed8051ab0ebe5b09c03..22f6f5c5da288e7449bd1244037815aa5c47aad0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2017-10-03  Joseph Myers  <joseph@codesourcery.com>
+
+       * sysdeps/ieee754/dbl-64/s_frexp.c: Include <libm-alias-double.h>.
+       (frexp): Define using libm_alias_double.
+       * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: Include
+       <libm-alias-double.h>.
+       (frexp): Define using libm_alias_double.
+       * sysdeps/ieee754/ldbl-opt/s_frexp.c (frexpl): Only define libc
+       compat symbol here.
+
 2017-10-03  Gabriel F. T. Gomes  <gabriel@inconstante.eti.br>
 
        [BZ #22235]
index 874214ec7c8a746313afb72d2cc79a93b029fdb7..c96a86966563043d184c7df9096aa41d41d4d830 100644 (file)
@@ -26,6 +26,7 @@ static char rcsid[] = "$NetBSD: s_frexp.c,v 1.9 1995/05/10 20:47:24 jtc Exp $";
 
 #include <math.h>
 #include <math_private.h>
+#include <libm-alias-double.h>
 
 static const double
   two54 = 1.80143985094819840000e+16; /* 0x43500000, 0x00000000 */
@@ -51,8 +52,4 @@ __frexp (double x, int *eptr)
   SET_HIGH_WORD (x, hx);
   return x;
 }
-weak_alias (__frexp, frexp)
-#ifdef NO_LONG_DOUBLE
-strong_alias (__frexp, __frexpl)
-weak_alias (__frexp, frexpl)
-#endif
+libm_alias_double (__frexp, frexp)
index 5e8bc6471158d85eebc750daa693632706a856f7..f56042649dfe7988c4b6e4c996765d143e4e09bd 100644 (file)
@@ -19,6 +19,7 @@
 #include <inttypes.h>
 #include <math.h>
 #include <math_private.h>
+#include <libm-alias-double.h>
 
 /*
  * for non-zero, finite x
@@ -62,8 +63,4 @@ __frexp (double x, int *eptr)
   *eptr = e;
   return x;
 }
-weak_alias (__frexp, frexp)
-#ifdef NO_LONG_DOUBLE
-strong_alias (__frexp, __frexpl)
-weak_alias (__frexp, frexpl)
-#endif
+libm_alias_double (__frexp, frexp)
index 0e3a5e0830c40327bbf5691886fd6838d0c24ec2..b0bfde309353322f463cb68d5f5991c731f59ed6 100644 (file)
@@ -1,9 +1,5 @@
 #include <math_ldbl_opt.h>
 #include <sysdeps/ieee754/dbl-64/s_frexp.c>
-#if IS_IN (libm)
-# if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
-compat_symbol (libm, __frexp, frexpl, GLIBC_2_0);
-# endif
-#elif LONG_DOUBLE_COMPAT(libc, GLIBC_2_0)
+#if LONG_DOUBLE_COMPAT (libc, GLIBC_2_0)
 compat_symbol (libc, __frexp, frexpl, GLIBC_2_0);
 #endif
This page took 0.076462 seconds and 5 git commands to generate.