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.25-427-g5e11228


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  5e1122827a9f9751922b25c332f8f0272de60719 (commit)
      from  cf2046ec7dd4b233180377cc5b8debcf551d1fc9 (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=5e1122827a9f9751922b25c332f8f0272de60719

commit 5e1122827a9f9751922b25c332f8f0272de60719
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Wed Jun 7 14:09:59 2017 -0700

    x86-64: Rename wmemset.h to ifunc-wmemset.h
    
    No code changes.
    
    	* sysdeps/x86_64/multiarch/wmemset.c: Include ifunc-wmemset.h
    	instead of wmemset.h.
    	* sysdeps/x86_64/multiarch/wmemset_chk.c: Likewise.
    	* sysdeps/x86_64/multiarch/wmemset.h: Renamed to ...
    	* sysdeps/x86_64/multiarch/ifunc-wmemset.h: This.

diff --git a/ChangeLog b/ChangeLog
index 88483ae..bbc21ab 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2017-06-07  H.J. Lu  <hongjiu.lu@intel.com>
+
+	* sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update
+	comments.
+	* sysdeps/x86_64/multiarch/wmemset.c: Include ifunc-wmemset.h
+	instead of wmemset.h.
+	* sysdeps/x86_64/multiarch/wmemset_chk.c: Likewise.
+	* sysdeps/x86_64/multiarch/wmemset.h: Renamed to ...
+	* sysdeps/x86_64/multiarch/ifunc-wmemset.h: This.
+
 2017-06-07  Gabriel F. T. Gomes  <gftg@linux.vnet.ibm.com>
 
 	* stdio-common/printf-parsemb.c (__parse_one_specmb): Initialize
diff --git a/sysdeps/x86_64/multiarch/ifunc-impl-list.c b/sysdeps/x86_64/multiarch/ifunc-impl-list.c
index ee4243a..5627183 100644
--- a/sysdeps/x86_64/multiarch/ifunc-impl-list.c
+++ b/sysdeps/x86_64/multiarch/ifunc-impl-list.c
@@ -315,7 +315,7 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
 			      __wmemcmp_ssse3)
 	      IFUNC_IMPL_ADD (array, i, wmemcmp, 1, __wmemcmp_sse2))
 
-  /* Support sysdeps/x86_64/multiarch/wmemset.S.  */
+  /* Support sysdeps/x86_64/multiarch/wmemset.c.  */
   IFUNC_IMPL (i, name, wmemset,
 	      IFUNC_IMPL_ADD (array, i, wmemset, 1,
 			      __wmemset_sse2_unaligned)
@@ -444,7 +444,7 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
 			      __strncmp_ssse3)
 	      IFUNC_IMPL_ADD (array, i, strncmp, 1, __strncmp_sse2))
 
-  /* Support sysdeps/x86_64/multiarch/wmemset_chk.S.  */
+  /* Support sysdeps/x86_64/multiarch/wmemset_chk.c.  */
   IFUNC_IMPL (i, name, __wmemset_chk,
 	      IFUNC_IMPL_ADD (array, i, __wmemset_chk, 1,
 			      __wmemset_chk_sse2_unaligned)
diff --git a/sysdeps/x86_64/multiarch/wmemset.h b/sysdeps/x86_64/multiarch/ifunc-wmemset.h
similarity index 100%
rename from sysdeps/x86_64/multiarch/wmemset.h
rename to sysdeps/x86_64/multiarch/ifunc-wmemset.h
diff --git a/sysdeps/x86_64/multiarch/wmemset.c b/sysdeps/x86_64/multiarch/wmemset.c
index 61626a9..dd35be6 100644
--- a/sysdeps/x86_64/multiarch/wmemset.c
+++ b/sysdeps/x86_64/multiarch/wmemset.c
@@ -26,7 +26,7 @@
 # undef __wmemset
 
 # define SYMBOL_NAME wmemset
-# include "wmemset.h"
+# include "ifunc-wmemset.h"
 
 libc_ifunc_redirected (__redirect_wmemset, __wmemset, IFUNC_SELECTOR ());
 weak_alias (__wmemset, wmemset)
diff --git a/sysdeps/x86_64/multiarch/wmemset_chk.c b/sysdeps/x86_64/multiarch/wmemset_chk.c
index 2c039a5..d3ded55 100644
--- a/sysdeps/x86_64/multiarch/wmemset_chk.c
+++ b/sysdeps/x86_64/multiarch/wmemset_chk.c
@@ -24,7 +24,7 @@
 # undef __wmemset_chk
 
 # define SYMBOL_NAME wmemset_chk
-# include "wmemset.h"
+# include "ifunc-wmemset.h"
 
 libc_ifunc_redirected (__redirect_wmemset_chk, __wmemset_chk,
 		       IFUNC_SELECTOR ());

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

Summary of changes:
 ChangeLog                                          |   10 ++++++++++
 sysdeps/x86_64/multiarch/ifunc-impl-list.c         |    4 ++--
 .../multiarch/{wmemset.h => ifunc-wmemset.h}       |    0
 sysdeps/x86_64/multiarch/wmemset.c                 |    2 +-
 sysdeps/x86_64/multiarch/wmemset_chk.c             |    2 +-
 5 files changed, 14 insertions(+), 4 deletions(-)
 rename sysdeps/x86_64/multiarch/{wmemset.h => ifunc-wmemset.h} (100%)


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]