public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc/release/2.33/master] x86-64: Fix strcmp-evex.S
@ 2022-05-05 17:25 Sunil Pandey
  0 siblings, 0 replies; only message in thread
From: Sunil Pandey @ 2022-05-05 17:25 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=53f4ff9ff4af14f77ac9b28ba6e15bf811043793

commit 53f4ff9ff4af14f77ac9b28ba6e15bf811043793
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Fri Feb 4 11:11:08 2022 -0800

    x86-64: Fix strcmp-evex.S
    
    Change "movl %edx, %rdx" to "movl %edx, %edx" in:
    
    commit 8418eb3ff4b781d31c4ed5dc6c0bd7356bc45db9
    Author: Noah Goldstein <goldstein.w.n@gmail.com>
    Date:   Mon Jan 10 15:35:39 2022 -0600
    
        x86: Optimize strcmp-evex.S
    
    (cherry picked from commit 0e0199a9e02ebe42e2b36958964d63f03573c382)

Diff:
---
 sysdeps/x86_64/multiarch/strcmp-evex.S | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysdeps/x86_64/multiarch/strcmp-evex.S b/sysdeps/x86_64/multiarch/strcmp-evex.S
index 99d8409af2..ed56af8ecd 100644
--- a/sysdeps/x86_64/multiarch/strcmp-evex.S
+++ b/sysdeps/x86_64/multiarch/strcmp-evex.S
@@ -116,7 +116,7 @@ ENTRY(STRCMP)
 # ifdef USE_AS_STRNCMP
 #  ifdef __ILP32__
 	/* Clear the upper 32 bits.  */
-	movl	%edx, %rdx
+	movl	%edx, %edx
 #  endif
 	cmp	$1, %RDX_LP
 	/* Signed comparison intentional. We use this branch to also


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-05-05 17:25 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-05 17:25 [glibc/release/2.33/master] x86-64: Fix strcmp-evex.S Sunil Pandey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).