diff options
author | Shravan Narayan <shravanrn@gmail.com> | 2023-06-09 03:24:14 -0400 |
---|---|---|
committer | Shravan Narayan <shravanrn@gmail.com> | 2023-06-19 23:57:05 -0400 |
commit | d1ef9b1298ffe645cd4ed430b687306c43da315c (patch) | |
tree | a62eec4af7ad939287f42976fcbcd4a5a381f8c4 /src/template | |
parent | 5edb24126ed5183d35b317478fc5a7f8ca831ac9 (diff) | |
download | wabt-d1ef9b1298ffe645cd4ed430b687306c43da315c.tar.gz wabt-d1ef9b1298ffe645cd4ed430b687306c43da315c.tar.bz2 wabt-d1ef9b1298ffe645cd4ed430b687306c43da315c.zip |
wasm2c: fix bug in windows atomic load macro
Diffstat (limited to 'src/template')
-rw-r--r-- | src/template/wasm2c_atomicops.declarations.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/template/wasm2c_atomicops.declarations.c b/src/template/wasm2c_atomicops.declarations.c index 546f8a4d..fa16bc31 100644 --- a/src/template/wasm2c_atomicops.declarations.c +++ b/src/template/wasm2c_atomicops.declarations.c @@ -10,10 +10,10 @@ // or if we have to reuse other instrinsics // https://stackoverflow.com/questions/42660091/atomic-load-in-c-with-msvc // We reuse other intrinsics to be cautious -#define atomic_load_u8(a, v) _InterlockedOr8(a, 0) -#define atomic_load_u16(a, v) _InterlockedOr16(a, 0) -#define atomic_load_u32(a, v) _InterlockedOr(a, 0) -#define atomic_load_u64(a, v) _InterlockedOr64(a, 0) +#define atomic_load_u8(a) _InterlockedOr8(a, 0) +#define atomic_load_u16(a) _InterlockedOr16(a, 0) +#define atomic_load_u32(a) _InterlockedOr(a, 0) +#define atomic_load_u64(a) _InterlockedOr64(a, 0) #define atomic_store_u8(a, v) _InterlockedExchange8(a, v) #define atomic_store_u16(a, v) _InterlockedExchange16(a, v) |