From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1039) id C75593858414; Fri, 4 Feb 2022 19:12:31 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C75593858414 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: H.J. Lu To: glibc-cvs@sourceware.org Subject: [glibc] x86-64: Fix strcmp-evex.S X-Act-Checkin: glibc X-Git-Author: H.J. Lu X-Git-Refname: refs/heads/master X-Git-Oldrev: c15efd011cea3d8f0494269eb539583215a1feed X-Git-Newrev: 0e0199a9e02ebe42e2b36958964d63f03573c382 Message-Id: <20220204191231.C75593858414@sourceware.org> Date: Fri, 4 Feb 2022 19:12:31 +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: Fri, 04 Feb 2022 19:12:31 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=0e0199a9e02ebe42e2b36958964d63f03573c382 commit 0e0199a9e02ebe42e2b36958964d63f03573c382 Author: H.J. Lu 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 Date: Mon Jan 10 15:35:39 2022 -0600 x86: Optimize strcmp-evex.S 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 e5070f3d53..6f42e3155a 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