From: Noah Goldstein Date: Fri, 8 Nov 2024 19:18:17 +0000 (-0800) Subject: x86/string: Use `movsl` instead of `movsd` [BZ #32344] X-Git-Tag: glibc-2.41~504 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6754b5becf403a3c6b95a0ebd829edf8e4d83251;p=thirdparty%2Fglibc.git x86/string: Use `movsl` instead of `movsd` [BZ #32344] `ld`, starting at 2.40, emits a warning when using `movsd`. There is no change to the actual code produced. Reviewed-by: H.J. Lu --- diff --git a/sysdeps/x86_64/multiarch/strcpy-evex.S b/sysdeps/x86_64/multiarch/strcpy-evex.S index 4f5bd3ba55..be1d65453c 100644 --- a/sysdeps/x86_64/multiarch/strcpy-evex.S +++ b/sysdeps/x86_64/multiarch/strcpy-evex.S @@ -45,7 +45,7 @@ # define VPCMPEQ vpcmpeqd # define CHAR_SIZE 4 -# define REP_MOVS rep movsd +# define REP_MOVS rep movsl # define USE_WIDE_CHAR # else