summaryrefslogtreecommitdiff
path: root/test/print
diff options
context:
space:
mode:
Diffstat (limited to 'test/print')
-rw-r--r--test/print/memory-import-shared.minified.txt2
-rw-r--r--test/print/memory-import-shared.txt2
-rw-r--r--test/print/memory-import-shared.wast2
-rw-r--r--test/print/memory-shared.minified.txt2
-rw-r--r--test/print/memory-shared.txt2
-rw-r--r--test/print/memory-shared.wast2
6 files changed, 6 insertions, 6 deletions
diff --git a/test/print/memory-import-shared.minified.txt b/test/print/memory-import-shared.minified.txt
index 8691f813c..75cbecb8b 100644
--- a/test/print/memory-import-shared.minified.txt
+++ b/test/print/memory-import-shared.minified.txt
@@ -1 +1 @@
-(module(import "env" "memory" (memory $0 (shared 256 256)))) \ No newline at end of file
+(module(import "env" "memory" (memory $0 256 256 shared))) \ No newline at end of file
diff --git a/test/print/memory-import-shared.txt b/test/print/memory-import-shared.txt
index ba5a0463c..30374cff0 100644
--- a/test/print/memory-import-shared.txt
+++ b/test/print/memory-import-shared.txt
@@ -1,3 +1,3 @@
(module
- (import "env" "memory" (memory $0 (shared 256 256)))
+ (import "env" "memory" (memory $0 256 256 shared))
)
diff --git a/test/print/memory-import-shared.wast b/test/print/memory-import-shared.wast
index ba5a0463c..30374cff0 100644
--- a/test/print/memory-import-shared.wast
+++ b/test/print/memory-import-shared.wast
@@ -1,3 +1,3 @@
(module
- (import "env" "memory" (memory $0 (shared 256 256)))
+ (import "env" "memory" (memory $0 256 256 shared))
)
diff --git a/test/print/memory-shared.minified.txt b/test/print/memory-shared.minified.txt
index c6aeccdcd..3f07a0080 100644
--- a/test/print/memory-shared.minified.txt
+++ b/test/print/memory-shared.minified.txt
@@ -1,2 +1,2 @@
-(module(memory $0 (shared 23 256))
+(module(memory $0 23 256 shared)
) \ No newline at end of file
diff --git a/test/print/memory-shared.txt b/test/print/memory-shared.txt
index ee02979b1..daff79f22 100644
--- a/test/print/memory-shared.txt
+++ b/test/print/memory-shared.txt
@@ -1,3 +1,3 @@
(module
- (memory $0 (shared 23 256))
+ (memory $0 23 256 shared)
)
diff --git a/test/print/memory-shared.wast b/test/print/memory-shared.wast
index ee02979b1..daff79f22 100644
--- a/test/print/memory-shared.wast
+++ b/test/print/memory-shared.wast
@@ -1,3 +1,3 @@
(module
- (memory $0 (shared 23 256))
+ (memory $0 23 256 shared)
)