]> sourceware.org Git - glibc.git/commitdiff
x86-64: Fix strcmp-avx2.S
authorH.J. Lu <hjl.tools@gmail.com>
Fri, 4 Feb 2022 19:09:10 +0000 (11:09 -0800)
committerH.J. Lu <hjl.tools@gmail.com>
Fri, 4 Feb 2022 19:09:10 +0000 (11:09 -0800)
Change "movl %edx, %rdx" to "movl %edx, %edx" in:

commit b77b06e0e296f1a2276c27a67e1d44f2cfa38d45
Author: Noah Goldstein <goldstein.w.n@gmail.com>
Date:   Mon Jan 10 15:35:38 2022 -0600

    x86: Optimize strcmp-avx2.S

sysdeps/x86_64/multiarch/strcmp-avx2.S

index 28d6a0025aff5179356b0ff019405f947a4def30..99e5349be872c4624bc6d0d5eaa9ed6fea56d35e 100644 (file)
@@ -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
This page took 0.046054 seconds and 5 git commands to generate.