aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2022-02-04 11:11:08 -0800
committerH.J. Lu <hjl.tools@gmail.com>2022-02-04 11:11:08 -0800
commit0e0199a9e02ebe42e2b36958964d63f03573c382 (patch)
tree954f6745683bbff22b4d7b95fe8e1df69eb1e03d
parentc15efd011cea3d8f0494269eb539583215a1feed (diff)
downloadglibc-0e0199a9e02ebe42e2b36958964d63f03573c382.tar.xz
glibc-0e0199a9e02ebe42e2b36958964d63f03573c382.zip
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
-rw-r--r--sysdeps/x86_64/multiarch/strcmp-evex.S2
1 files changed, 1 insertions, 1 deletions
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