diff options
author | Derek Schuff <dschuff@chromium.org> | 2017-09-22 12:52:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-22 12:52:35 -0700 |
commit | db66e646df6512d4eb2be344778001c62402e4c5 (patch) | |
tree | bcc070601de788d6ffa407164f2ce00ac3bab128 /test/memory-shared.wast.fromBinary | |
parent | b29158db92c6fdab578b8b550cb965b020901768 (diff) | |
download | binaryen-db66e646df6512d4eb2be344778001c62402e4c5.tar.gz binaryen-db66e646df6512d4eb2be344778001c62402e4c5.tar.bz2 binaryen-db66e646df6512d4eb2be344778001c62402e4c5.zip |
Update text syntax for shared memory limits (#1197)
Following WebAssembly/threads#58
e.g. (memory $0 23 256 shared) is now (memory $0 (shared 23 256))
Diffstat (limited to 'test/memory-shared.wast.fromBinary')
-rw-r--r-- | test/memory-shared.wast.fromBinary | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/memory-shared.wast.fromBinary b/test/memory-shared.wast.fromBinary index b16e00d99..ea904d085 100644 --- a/test/memory-shared.wast.fromBinary +++ b/test/memory-shared.wast.fromBinary @@ -1,4 +1,4 @@ (module - (memory $0 23 256 shared) + (memory $0 (shared 23 256)) ) |