diff options
author | Wouter van Oortmerssen <aardappel@gmail.com> | 2020-09-18 15:50:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-18 15:50:25 -0700 |
commit | 3b4cb935f83c7fabacbf61146e56dabc0d65a441 (patch) | |
tree | 9aaac74aad59fe2ff2b00ac6e6a77bb808b01747 /test/memory-import64.wast.wasm.fromBinary | |
parent | 1a928bc3ff4b511e81b3f93db8aea872e88abaaf (diff) | |
download | binaryen-3b4cb935f83c7fabacbf61146e56dabc0d65a441.tar.gz binaryen-3b4cb935f83c7fabacbf61146e56dabc0d65a441.tar.bz2 binaryen-3b4cb935f83c7fabacbf61146e56dabc0d65a441.zip |
Initial implementation of "Memory64" proposal (#3130)
Also includes a lot of new spec tests that eventually need to go into the spec repo
Diffstat (limited to 'test/memory-import64.wast.wasm.fromBinary')
-rw-r--r-- | test/memory-import64.wast.wasm.fromBinary | 10 |
1 files changed, 10 insertions, 0 deletions
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) + ) + ) +) + |