diff options
author | Sam Clegg <sbc@chromium.org> | 2024-05-10 16:33:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-10 23:33:38 +0000 |
commit | abc430b617385f3e989f85e7bd1c2a9d838fd217 (patch) | |
tree | 5a7869083ae64cc59a04cb5512b3f175fade02d5 /src/tools/wasm-shell.cpp | |
parent | 9975b56614d4a5560b35f009be20d51e360b69dc (diff) | |
download | binaryen-abc430b617385f3e989f85e7bd1c2a9d838fd217.tar.gz binaryen-abc430b617385f3e989f85e7bd1c2a9d838fd217.tar.bz2 binaryen-abc430b617385f3e989f85e7bd1c2a9d838fd217.zip |
[memory64] Add table64 to existing memory64 support (#6577)
Tests is still very limited. Hopefully we can use the upstream spec
tests soon and avoid having to write our own tests for
`.set/.set/.fill/etc`.
See https://github.com/WebAssembly/memory64/issues/51
Diffstat (limited to 'src/tools/wasm-shell.cpp')
-rw-r--r-- | src/tools/wasm-shell.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/tools/wasm-shell.cpp b/src/tools/wasm-shell.cpp index 625914cbc..e2709b8ae 100644 --- a/src/tools/wasm-shell.cpp +++ b/src/tools/wasm-shell.cpp @@ -378,6 +378,11 @@ protected: spectest->addExport( builder.makeExport("table", Name::fromInt(0), ExternalKind::Table)); + spectest->addTable(builder.makeTable( + Name::fromInt(1), Type(HeapType::func, Nullable), 10, 20, Type::i64)); + spectest->addExport( + builder.makeExport("table64", Name::fromInt(1), ExternalKind::Table)); + Memory* memory = spectest->addMemory(builder.makeMemory(Name::fromInt(0), 1, 2)); spectest->addExport( |