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.26.9000-833-gd812486


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  d8124864444fa43fe12d9d907fdb5192927add3f (commit)
      from  f07d2ec8c02cf378d40122222b0b1f7ed263457f (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=d8124864444fa43fe12d9d907fdb5192927add3f

commit d8124864444fa43fe12d9d907fdb5192927add3f
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Tue Nov 28 00:01:11 2017 +0000

    Support ldbl-opt libm_alias_double use from .S files.
    
    This patch makes the ldbl-opt libm_alias_double implementation support
    use from .S sources, by adding a semicolon after its use of
    weak_alias.
    
    Tested (compilation only) with build-many-glibcs.py for
    alpha-linux-gnu, in conjunction with a patch introducing uses of
    libm_alias_double in alpha .S files.
    
    	* sysdeps/ieee754/ldbl-opt/libm-alias-double.h
    	(libm_alias_double_r): Add semicolon after weak_alias call.

diff --git a/ChangeLog b/ChangeLog
index be3e856..70ea90a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-11-28  Joseph Myers  <joseph@codesourcery.com>
+
+	* sysdeps/ieee754/ldbl-opt/libm-alias-double.h
+	(libm_alias_double_r): Add semicolon after weak_alias call.
+
 2017-11-27  Joseph Myers  <joseph@codesourcery.com>
 
 	* sysdeps/aarch64/fpu/s_ceil.c: Include <libm-alias-double.h>.
diff --git a/sysdeps/ieee754/ldbl-opt/libm-alias-double.h b/sysdeps/ieee754/ldbl-opt/libm-alias-double.h
index 4c22ffb..f98e9d5 100644
--- a/sysdeps/ieee754/ldbl-opt/libm-alias-double.h
+++ b/sysdeps/ieee754/ldbl-opt/libm-alias-double.h
@@ -41,7 +41,7 @@
    (where there is one name per format, not per type) or for
    obsolescent functions not provided for _FloatN types.  */
 #define libm_alias_double_r(from, to, r)			\
-  weak_alias (from ## r, to ## r)				\
+  weak_alias (from ## r, to ## r);				\
   LONG_DOUBLE_COMPAT_CHOOSE_libm_ ## to ## l ## r		\
     (compat_symbol (libm,					\
 		    from ## r,					\

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

Summary of changes:
 ChangeLog                                    |    5 +++++
 sysdeps/ieee754/ldbl-opt/libm-alias-double.h |    2 +-
 2 files changed, 6 insertions(+), 1 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]