From: H.J. Lu Date: Fri, 4 Feb 2022 19:11:08 +0000 (-0800) Subject: x86-64: Fix strcmp-evex.S X-Git-Tag: glibc-2.36~739 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0e0199a9e02ebe42e2b36958964d63f03573c382;p=thirdparty%2Fglibc.git x86-64: Fix strcmp-evex.S Change "movl %edx, %rdx" to "movl %edx, %edx" in: commit 8418eb3ff4b781d31c4ed5dc6c0bd7356bc45db9 Author: Noah Goldstein Date: Mon Jan 10 15:35:39 2022 -0600 x86: Optimize strcmp-evex.S --- diff --git a/sysdeps/x86_64/multiarch/strcmp-evex.S b/sysdeps/x86_64/multiarch/strcmp-evex.S index e5070f3d53c..6f42e3155ae 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