From abc430b617385f3e989f85e7bd1c2a9d838fd217 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Fri, 10 May 2024 16:33:38 -0700 Subject: [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 --- src/wasm-binary.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/wasm-binary.h') diff --git a/src/wasm-binary.h b/src/wasm-binary.h index b5aa83960..9610aed9f 100644 --- a/src/wasm-binary.h +++ b/src/wasm-binary.h @@ -1552,6 +1552,8 @@ public: // gets a memory in the combined import+defined space Memory* getMemory(Index index); + // gets a table in the combined import+defined space + Table* getTable(Index index); void getResizableLimits(Address& initial, Address& max, -- cgit v1.2.3