summaryrefslogtreecommitdiff
path: root/test/lit/basic/multi-memories-atomics64.wast
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-01-03 14:59:38 -0800
committerGitHub <noreply@github.com>2024-01-03 14:59:38 -0800
commit0ed42cf976ce9a3dfbe9cbb0885122e8fb6a377b (patch)
treeb7969243a22e1878f37a8d02336ac81fd5fb7e33 /test/lit/basic/multi-memories-atomics64.wast
parent1878403ec9c4382ab51ca72257f4d97a23a1fc0d (diff)
downloadbinaryen-0ed42cf976ce9a3dfbe9cbb0885122e8fb6a377b.tar.gz
binaryen-0ed42cf976ce9a3dfbe9cbb0885122e8fb6a377b.tar.bz2
binaryen-0ed42cf976ce9a3dfbe9cbb0885122e8fb6a377b.zip
Use the standard shared memory text format (#6200)
Update the legacy text parser and all tests to use the standard text format for shared memories, e.g. `(memory $m 1 1 shared)` rather than `(memory $m (shared 1 1))`. Also remove support for non-standard in-line "data" or "segment" declarations. This change makes the tests more compatible with the new text parser, which only supports the standard format.
Diffstat (limited to 'test/lit/basic/multi-memories-atomics64.wast')
-rw-r--r--test/lit/basic/multi-memories-atomics64.wast24
1 files changed, 12 insertions, 12 deletions
diff --git a/test/lit/basic/multi-memories-atomics64.wast b/test/lit/basic/multi-memories-atomics64.wast
index 79afddb3b..0795d10ad 100644
--- a/test/lit/basic/multi-memories-atomics64.wast
+++ b/test/lit/basic/multi-memories-atomics64.wast
@@ -14,15 +14,15 @@
;; CHECK-BIN: (type $0 (func))
;; CHECK-BIN-NODEBUG: (type $0 (func))
(type $0 (func))
- ;; CHECK-TEXT: (memory $appMemory (shared i64 23 256))
- ;; CHECK-BIN: (memory $appMemory (shared i64 23 256))
- (memory $appMemory (shared i64 23 256))
- ;; CHECK-TEXT: (memory $dataMemory (shared i64 23 256))
- ;; CHECK-BIN: (memory $dataMemory (shared i64 23 256))
- (memory $dataMemory (shared i64 23 256))
- ;; CHECK-TEXT: (memory $instrumentMemory (shared i64 23 256))
- ;; CHECK-BIN: (memory $instrumentMemory (shared i64 23 256))
- (memory $instrumentMemory (shared i64 23 256))
+ ;; CHECK-TEXT: (memory $appMemory i64 23 256 shared)
+ ;; CHECK-BIN: (memory $appMemory i64 23 256 shared)
+ (memory $appMemory i64 23 256 shared)
+ ;; CHECK-TEXT: (memory $dataMemory i64 23 256 shared)
+ ;; CHECK-BIN: (memory $dataMemory i64 23 256 shared)
+ (memory $dataMemory i64 23 256 shared)
+ ;; CHECK-TEXT: (memory $instrumentMemory i64 23 256 shared)
+ ;; CHECK-BIN: (memory $instrumentMemory i64 23 256 shared)
+ (memory $instrumentMemory i64 23 256 shared)
;; CHECK-TEXT: (func $atomic-loadstore (type $0)
;; CHECK-TEXT-NEXT: (local $0 i64)
@@ -1064,11 +1064,11 @@
(atomic.fence)
)
)
-;; CHECK-BIN-NODEBUG: (memory $0 (shared i64 23 256))
+;; CHECK-BIN-NODEBUG: (memory $0 i64 23 256 shared)
-;; CHECK-BIN-NODEBUG: (memory $1 (shared i64 23 256))
+;; CHECK-BIN-NODEBUG: (memory $1 i64 23 256 shared)
-;; CHECK-BIN-NODEBUG: (memory $2 (shared i64 23 256))
+;; CHECK-BIN-NODEBUG: (memory $2 i64 23 256 shared)
;; CHECK-BIN-NODEBUG: (func $0 (type $0)
;; CHECK-BIN-NODEBUG-NEXT: (local $0 i64)