[CRT] intrin_x86.h: Use movsl instead of movsd to fix a GCC 13 warning

This commit is contained in:
Timo Kreuzer 2024-03-12 19:06:33 +02:00
parent d45876b810
commit 2f03b146da

View 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)
);