This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.20-420-gb638f96


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  b638f96a7607a279d5fd9b14fb49e02fa5151b5f (commit)
      from  0dacd7a3b9401f7eb7160cf79231a4573773c5da (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=b638f96a7607a279d5fd9b14fb49e02fa5151b5f

commit b638f96a7607a279d5fd9b14fb49e02fa5151b5f
Author: Chris Metcalf <cmetcalf@ezchip.com>
Date:   Mon Dec 22 15:24:17 2014 -0500

    Fix namespace conformance issue with Bessel functions.
    
    [BZ #17747]
    The y0/y1/yn and j0/j1/jn functions provided a strong_alias
    to the "l"-suffixed variants when no long double support is
    being compiled.  This breaks namespace conformance when the
    basename versions conform but the l-suffixed ones don't.
    Fixed by making them weak aliases instead.

diff --git a/ChangeLog b/ChangeLog
index 77abebf..383205b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2014-12-22  Chris Metcalf  <cmetcalf@ezchip.com>
 
+	[BZ #17747]
+	* math/w_j0.c [defined NO_LONG_DOUBLE] (j0, y0): Convert strong
+	alias to weak alias for j0l, y0l.
+	* math/w_j1.c [defined NO_LONG_DOUBLE] (j1, y1): Likewise.
+	* math/w_jn.c [defined NO_LONG_DOUBLE] (jn, yn): Likewise.
+
 	[BZ #17746]
 	* sysdeps/tile/tilegx/strstr.c (STRSTR2): Remove implicit boolean
 	conversion.
diff --git a/math/w_j0.c b/math/w_j0.c
index f7d4f2b..92a8345 100644
--- a/math/w_j0.c
+++ b/math/w_j0.c
@@ -33,7 +33,7 @@ j0 (double x)
   return __ieee754_j0 (x);
 }
 #ifdef NO_LONG_DOUBLE
-strong_alias (j0, j0l)
+weak_alias (j0, j0l)
 #endif
 
 
@@ -64,5 +64,5 @@ y0 (double x)
   return __ieee754_y0 (x);
 }
 #ifdef NO_LONG_DOUBLE
-strong_alias (y0, y0l)
+weak_alias (y0, y0l)
 #endif
diff --git a/math/w_j1.c b/math/w_j1.c
index 1665501..37c6d1f 100644
--- a/math/w_j1.c
+++ b/math/w_j1.c
@@ -33,7 +33,7 @@ j1 (double x)
   return __ieee754_j1 (x);
 }
 #ifdef NO_LONG_DOUBLE
-strong_alias (j1, j1l)
+weak_alias (j1, j1l)
 #endif
 
 
@@ -64,5 +64,5 @@ y1 (double x)
   return __ieee754_y1 (x);
 }
 #ifdef NO_LONG_DOUBLE
-strong_alias (y1, y1l)
+weak_alias (y1, y1l)
 #endif
diff --git a/math/w_jn.c b/math/w_jn.c
index 993b33b..56bd280 100644
--- a/math/w_jn.c
+++ b/math/w_jn.c
@@ -33,7 +33,7 @@ jn (int n, double x)
   return __ieee754_jn (n, x);
 }
 #ifdef NO_LONG_DOUBLE
-strong_alias (jn, jnl)
+weak_alias (jn, jnl)
 #endif
 
 
@@ -64,5 +64,5 @@ yn (int n, double x)
   return __ieee754_yn (n, x);
 }
 #ifdef NO_LONG_DOUBLE
-strong_alias (yn, ynl)
+weak_alias (yn, ynl)
 #endif

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog   |    6 ++++++
 math/w_j0.c |    4 ++--
 math/w_j1.c |    4 ++--
 math/w_jn.c |    4 ++--
 4 files changed, 12 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]