diff options
Diffstat (limited to 'src/wasm-binary.h')
-rw-r--r-- | src/wasm-binary.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm-binary.h b/src/wasm-binary.h index bd78d9f9d..1fe3ef26a 100644 --- a/src/wasm-binary.h +++ b/src/wasm-binary.h @@ -1829,7 +1829,7 @@ public: curr->type = curr->value->type; } - void readMemoryAccess(uint32_t& alignment, size_t bytes, uint32_t& offset) { + void readMemoryAccess(Address& alignment, size_t bytes, Address& offset) { alignment = Pow2(getU32LEB()); offset = getU32LEB(); } |