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-732-g6b86036


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  6b86036452b9ac47b4ee7789a50f2f37df7ecc4f (commit)
      from  d83da3a4cebcf77e34593b86112dfad332808dae (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=6b86036452b9ac47b4ee7789a50f2f37df7ecc4f

commit 6b86036452b9ac47b4ee7789a50f2f37df7ecc4f
Author: Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
Date:   Tue Nov 7 10:07:48 2017 +0530

    powerpc: Use latest optimization for internal function calls
    
    Update strcasestr-power8 to use power8 version of strnlen for
    calculating length.
    
    Reviewed-by: Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>

diff --git a/ChangeLog b/ChangeLog
index 8355074..6d38309 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-11-07  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
+
+	* sysdeps/powerpc/powerpc64/multiarch/strcasestr-power8.S (STRNLEN):
+	Redefine STRNLEN as __strnlen_power8.
+
 2017-11-06  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
 
 	* signal/sighold.c (sighold): Optimize implementation.
diff --git a/sysdeps/powerpc/powerpc64/multiarch/strcasestr-power8.S b/sysdeps/powerpc/powerpc64/multiarch/strcasestr-power8.S
index 61025ce..2fbf8a9 100644
--- a/sysdeps/powerpc/powerpc64/multiarch/strcasestr-power8.S
+++ b/sysdeps/powerpc/powerpc64/multiarch/strcasestr-power8.S
@@ -26,7 +26,7 @@
 /* strlen is used to calculate len of r4.  */
 #define STRLEN __strlen_power8
 /* strnlen is used to check if len of r3 is more than r4.  */
-#define STRNLEN __strnlen_power7
+#define STRNLEN __strnlen_power8
 /* strchr is used to check if first char of r4 is present in r3.  */
 #define STRCHR __strchr_power8
 

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

Summary of changes:
 ChangeLog                                          |    5 +++++
 .../powerpc64/multiarch/strcasestr-power8.S        |    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]