mirror of
https://github.com/reactos/reactos.git
synced 2025-02-21 16:04:57 +00:00
[CRT] intrin_x86.h: Use movsl instead of movsd to fix a GCC 13 warning
This commit is contained in:
parent
d45876b810
commit
2f03b146da
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue