diff options
author | Keith Winstein <208955+keithw@users.noreply.github.com> | 2024-11-08 07:45:07 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-08 07:45:07 -0800 |
commit | 765b47d02aac894da80b74284263d1b487415aa0 (patch) | |
tree | 9e7275ddf2f8f3326c3a779e30a3aa963159ffa7 /include/wabt/interp/interp.h | |
parent | c1d97e9c75c687faa81fe0ab4f1ac77c30487f47 (diff) | |
download | wabt-765b47d02aac894da80b74284263d1b487415aa0.tar.gz wabt-765b47d02aac894da80b74284263d1b487415aa0.tar.bz2 wabt-765b47d02aac894da80b74284263d1b487415aa0.zip |
Add support for the custom-page-sizes proposal (#2502)
This adds support in the binary/text parsers and writers,
the validator and interpreter, and objdump (but not wasm2c).
Diffstat (limited to 'include/wabt/interp/interp.h')
-rw-r--r-- | include/wabt/interp/interp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/wabt/interp/interp.h b/include/wabt/interp/interp.h index 069bedaa..821a5391 100644 --- a/include/wabt/interp/interp.h +++ b/include/wabt/interp/interp.h @@ -206,7 +206,7 @@ struct MemoryType : ExternType { static const ExternKind skind = ExternKind::Memory; static bool classof(const ExternType* type); - explicit MemoryType(Limits); + explicit MemoryType(Limits, uint32_t); std::unique_ptr<ExternType> Clone() const override; @@ -215,6 +215,7 @@ struct MemoryType : ExternType { std::string* out_msg); Limits limits; + uint32_t page_size; }; struct GlobalType : ExternType { |