From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7852) id AFCC53856263; Thu, 5 May 2022 06:22:42 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org AFCC53856263 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Sunil Pandey To: glibc-cvs@sourceware.org Subject: [glibc/release/2.35/master] x86-64: Fix strcmp-avx2.S X-Act-Checkin: glibc X-Git-Author: H.J. Lu X-Git-Refname: refs/heads/release/2.35/master X-Git-Oldrev: 34ef8109458ff5d7263892f330cc06ad3e19d6a7 X-Git-Newrev: 250e277797b8e368ce55e0101c76864f52d2b29e Message-Id: <20220505062242.AFCC53856263@sourceware.org> Date: Thu, 5 May 2022 06:22:42 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2022 06:22:42 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=250e277797b8e368ce55e0101c76864f52d2b29e commit 250e277797b8e368ce55e0101c76864f52d2b29e Author: H.J. Lu Date: Fri Feb 4 11:09:10 2022 -0800 x86-64: Fix strcmp-avx2.S Change "movl %edx, %rdx" to "movl %edx, %edx" in: commit b77b06e0e296f1a2276c27a67e1d44f2cfa38d45 Author: Noah Goldstein Date: Mon Jan 10 15:35:38 2022 -0600 x86: Optimize strcmp-avx2.S (cherry picked from commit c15efd011cea3d8f0494269eb539583215a1feed) Diff: --- sysdeps/x86_64/multiarch/strcmp-avx2.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysdeps/x86_64/multiarch/strcmp-avx2.S b/sysdeps/x86_64/multiarch/strcmp-avx2.S index 28d6a0025a..99e5349be8 100644 --- a/sysdeps/x86_64/multiarch/strcmp-avx2.S +++ b/sysdeps/x86_64/multiarch/strcmp-avx2.S @@ -106,7 +106,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