diff options
author | 2025-08-03 15:16:08 +0100 | |
---|---|---|
committer | 2025-08-03 15:16:08 +0100 | |
commit | 9853d19b4de3e66138da8b3e66ccdaea356ea35b (patch) | |
tree | 290d1444941e19f837f45a4c46e6fc066ca2b8d5 /src/wincrt.c | |
parent | 3cce0e5621dc118b32c4143b42ced51c5328f7c7 (diff) | |
download | sst-9853d19b4de3e66138da8b3e66ccdaea356ea35b.tar.gz sst-9853d19b4de3e66138da8b3e66ccdaea356ea35b.zip |
Switch to Intel assembly syntax
Diffstat (limited to 'src/wincrt.c')
-rw-r--r-- | src/wincrt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wincrt.c b/src/wincrt.c index d8111ba..566b272 100644 --- a/src/wincrt.c +++ b/src/wincrt.c @@ -14,7 +14,7 @@ int memcmp(const void *restrict x, const void *restrict y, unsigned int sz) { #if defined(__GNUC__) || defined(__clang__) int a, b; __asm__ volatile ( - "xor %%eax, %%eax\n" + "xor eax, eax\n" "repz cmpsb\n" : "+D" (x), "+S" (y), "+c" (sz), "=@cca"(a), "=@ccb"(b) : |