diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2024-02-25 18:54:45 +0000 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2024-02-26 02:24:30 +0000 |
commit | 579ec0dced9a72c331591a479705a459cf715b64 (patch) | |
tree | f75c68e993a1c277651c948ce83491fefbffe72d /src/wincrt.c | |
parent | b32415ad03703e7471ba78de6a93ff251fca3e87 (diff) |
Remove some unnecessary and/or confusing stuff
Diffstat (limited to 'src/wincrt.c')
-rw-r--r-- | src/wincrt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wincrt.c b/src/wincrt.c index 8ffa6cb..177ce45 100644 --- a/src/wincrt.c +++ b/src/wincrt.c @@ -24,8 +24,8 @@ void *memcpy(void *restrict x, const void *restrict y, unsigned int sz) { #ifdef __clang__ __asm__ volatile ( "rep movsb\n" : - "=D" (x), "=S" (y), "=c" (sz) : - "0" (x), "1" (y), "2" (sz) : + "+D" (x), "+S" (y), "+c" (sz) : + : "memory" ); #else // terrible fallback just in case someone wants to use this with MSVC |