[CRT] intrin_x86.h: Use movsl instead of movsd to fix a GCC 13 warning
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Tue, 12 Mar 2024 17:06:33 +0000 (19:06 +0200)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Tue, 19 Mar 2024 06:44:40 +0000 (07:44 +0100)
sdk/include/crt/mingw32/intrin_x86.h

index 5adaf67..f630070 100644 (file)
@@ -833,7 +833,7 @@ __INTRIN_INLINE void __movsd(unsigned long * Destination, const unsigned long *
 {
        __asm__ __volatile__
        (
-               "rep; movsd" :
+               "rep; movsl" :
                [Destination] "=D" (Destination), [Source] "=S" (Source), [Count] "=c" (Count) :
                "[Destination]" (Destination), "[Source]" (Source), "[Count]" (Count)
        );