From 3b4cb935f83c7fabacbf61146e56dabc0d65a441 Mon Sep 17 00:00:00 2001 From: Wouter van Oortmerssen Date: Fri, 18 Sep 2020 15:50:25 -0700 Subject: Initial implementation of "Memory64" proposal (#3130) Also includes a lot of new spec tests that eventually need to go into the spec repo --- test/memory-import64.wast.wasm.fromBinary | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/memory-import64.wast.wasm.fromBinary (limited to 'test/memory-import64.wast.wasm.fromBinary') diff --git a/test/memory-import64.wast.wasm.fromBinary b/test/memory-import64.wast.wasm.fromBinary new file mode 100644 index 000000000..f783ba47e --- /dev/null +++ b/test/memory-import64.wast.wasm.fromBinary @@ -0,0 +1,10 @@ +(module + (type $none_=>_i32 (func (result i32))) + (import "env" "memory" (memory $0 1 1 i64)) + (func $0 (result i32) + (i32.load offset=13 + (i64.const 37) + ) + ) +) + -- cgit v1.2.3