diff options
author | Alex Crichton <alex@alexcrichton.com> | 2018-10-12 13:57:23 -0700 |
---|---|---|
committer | Ben Smith <binjimin@gmail.com> | 2018-10-12 13:57:23 -0700 |
commit | 27d833c6c8bbb041c43e5f67e1049d6c0095bd56 (patch) | |
tree | 417f5c3be444e1031b4e43e63962e1b160155cfd /test/dump/memory.txt | |
parent | 2cf0904a8b0c8fac067a10838121f8e0e35359de (diff) | |
download | wabt-27d833c6c8bbb041c43e5f67e1049d6c0095bd56.tar.gz wabt-27d833c6c8bbb041c43e5f67e1049d6c0095bd56.tar.bz2 wabt-27d833c6c8bbb041c43e5f67e1049d6c0095bd56.zip |
Add bulk memory opcode definitions (#927)
This commit starts to add support in wabt's various tools for the
upcoming [bulk memory proposal][1]. This is based off the current
proposal's overview, although these may get tweaked over time!
This is also the first time I've significantly contributed to wabt, and
what I thought would be a relatively simple addition ended up being much
larger than I imagined! I didn't add many negative tests yet but if more
tests are desired please let me know!
[1]: https://github.com/webassembly/bulk-memory-operations
Diffstat (limited to 'test/dump/memory.txt')
-rw-r--r-- | test/dump/memory.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dump/memory.txt b/test/dump/memory.txt index 1059d605..3315863e 100644 --- a/test/dump/memory.txt +++ b/test/dump/memory.txt @@ -21,7 +21,7 @@ 000000e: 00 ; section size (guess) 000000f: 02 ; num data segments ; data segment header 0 -0000010: 00 ; memory index +0000010: 00 0000011: 41 ; i32.const 0000012: 0a ; i32 literal 0000013: 0b ; end @@ -29,7 +29,7 @@ ; data segment data 0 0000015: 6865 6c6c 6f ; data segment data ; data segment header 1 -000001a: 00 ; memory index +000001a: 00 000001b: 41 ; i32.const 000001c: 14 ; i32 literal 000001d: 0b ; end |