diff options
author | Alon Zakai <azakai@google.com> | 2022-08-18 09:48:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-18 09:48:18 -0700 |
commit | 296a63eaaabd28990d6b3acf63af3d9d21190b8d (patch) | |
tree | 430536ca67dddc0550faaf19f3948f0039fc7b24 /src/wasm-binary.h | |
parent | 68bf5e3790c8ca95f52c5c5758775a592e708d77 (diff) | |
download | binaryen-296a63eaaabd28990d6b3acf63af3d9d21190b8d.tar.gz binaryen-296a63eaaabd28990d6b3acf63af3d9d21190b8d.tar.bz2 binaryen-296a63eaaabd28990d6b3acf63af3d9d21190b8d.zip |
Fix Memory64 binary parsing after #4811 (#4933)
Due to missing test coverage, we missed in #4811 that some memory operations
needed to get make64() called on them.
Diffstat (limited to 'src/wasm-binary.h')
-rw-r--r-- | src/wasm-binary.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wasm-binary.h b/src/wasm-binary.h index aef1767bb..c229e4666 100644 --- a/src/wasm-binary.h +++ b/src/wasm-binary.h @@ -1482,6 +1482,9 @@ public: Name getGlobalName(Index index); Name getTagName(Index index); + // gets a memory in the combined import+defined space + Memory* getMemory(Index index); + void getResizableLimits(Address& initial, Address& max, bool& shared, |