summaryrefslogtreecommitdiff
path: root/test/dot_s
diff options
context:
space:
mode:
Diffstat (limited to 'test/dot_s')
-rw-r--r--test/dot_s/alias.wast9
-rw-r--r--test/dot_s/alternate-lcomm.wast9
-rw-r--r--test/dot_s/asm_const.wast9
-rw-r--r--test/dot_s/basics.wast9
-rw-r--r--test/dot_s/bcp-1.wast9
-rw-r--r--test/dot_s/data-offset-folding.wast9
-rw-r--r--test/dot_s/debug.wast9
-rw-r--r--test/dot_s/dso_handle.wast9
-rw-r--r--test/dot_s/dyncall.wast9
-rw-r--r--test/dot_s/exit.wast9
-rw-r--r--test/dot_s/export_malloc_free.wast9
-rw-r--r--test/dot_s/fix_em_ehsjlj_names.wast9
-rw-r--r--test/dot_s/function-data-sections.wast9
-rw-r--r--test/dot_s/globals.wast9
-rw-r--r--test/dot_s/hostFinalize.wast9
-rw-r--r--test/dot_s/indidx.wast9
-rw-r--r--test/dot_s/indirect-import.wast9
-rw-r--r--test/dot_s/initializers.wast9
-rw-r--r--test/dot_s/lcomm-in-text-segment.wast9
-rw-r--r--test/dot_s/local_align.wast9
-rw-r--r--test/dot_s/macClangMetaData.wast9
-rw-r--r--test/dot_s/memops.wast9
-rw-r--r--test/dot_s/minimal.wast9
-rw-r--r--test/dot_s/permute.wast9
-rw-r--r--test/dot_s/relocation.wast9
-rw-r--r--test/dot_s/return.wast9
-rw-r--r--test/dot_s/start_main0.wast9
-rw-r--r--test/dot_s/start_main2.wast9
-rw-r--r--test/dot_s/symbolic-offset.wast9
-rw-r--r--test/dot_s/text_before_type.wast9
-rw-r--r--test/dot_s/unreachable_blocks.wast9
-rw-r--r--test/dot_s/visibilities.wast9
32 files changed, 96 insertions, 192 deletions
diff --git a/test/dot_s/alias.wast b/test/dot_s/alias.wast
index 7e439bccb..9caae0016 100644
--- a/test/dot_s/alias.wast
+++ b/test/dot_s/alias.wast
@@ -43,12 +43,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/alternate-lcomm.wast b/test/dot_s/alternate-lcomm.wast
index 625760209..e55247c27 100644
--- a/test/dot_s/alternate-lcomm.wast
+++ b/test/dot_s/alternate-lcomm.wast
@@ -19,12 +19,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/asm_const.wast b/test/dot_s/asm_const.wast
index 3e9ffce65..2b33a7539 100644
--- a/test/dot_s/asm_const.wast
+++ b/test/dot_s/asm_const.wast
@@ -31,12 +31,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/basics.wast b/test/dot_s/basics.wast
index abdbaaa5a..8e8191369 100644
--- a/test/dot_s/basics.wast
+++ b/test/dot_s/basics.wast
@@ -112,12 +112,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/bcp-1.wast b/test/dot_s/bcp-1.wast
index 1c35fdf76..26448250f 100644
--- a/test/dot_s/bcp-1.wast
+++ b/test/dot_s/bcp-1.wast
@@ -324,12 +324,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/data-offset-folding.wast b/test/dot_s/data-offset-folding.wast
index 074c8681f..ba95d77c5 100644
--- a/test/dot_s/data-offset-folding.wast
+++ b/test/dot_s/data-offset-folding.wast
@@ -21,12 +21,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/debug.wast b/test/dot_s/debug.wast
index 57079919a..d4431ba4f 100644
--- a/test/dot_s/debug.wast
+++ b/test/dot_s/debug.wast
@@ -71,12 +71,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/dso_handle.wast b/test/dot_s/dso_handle.wast
index cdfc998df..4b6dcb340 100644
--- a/test/dot_s/dso_handle.wast
+++ b/test/dot_s/dso_handle.wast
@@ -25,12 +25,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/dyncall.wast b/test/dot_s/dyncall.wast
index 19f6e00bc..4df0e4b27 100644
--- a/test/dot_s/dyncall.wast
+++ b/test/dot_s/dyncall.wast
@@ -65,12 +65,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/exit.wast b/test/dot_s/exit.wast
index 4f585d13c..f5bb40ce1 100644
--- a/test/dot_s/exit.wast
+++ b/test/dot_s/exit.wast
@@ -29,12 +29,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/export_malloc_free.wast b/test/dot_s/export_malloc_free.wast
index 7d601ff21..c0f673e21 100644
--- a/test/dot_s/export_malloc_free.wast
+++ b/test/dot_s/export_malloc_free.wast
@@ -41,12 +41,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/fix_em_ehsjlj_names.wast b/test/dot_s/fix_em_ehsjlj_names.wast
index 429e23494..ea6dd54f4 100644
--- a/test/dot_s/fix_em_ehsjlj_names.wast
+++ b/test/dot_s/fix_em_ehsjlj_names.wast
@@ -91,12 +91,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/function-data-sections.wast b/test/dot_s/function-data-sections.wast
index 64a7a67d4..7cbd428bc 100644
--- a/test/dot_s/function-data-sections.wast
+++ b/test/dot_s/function-data-sections.wast
@@ -41,12 +41,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/globals.wast b/test/dot_s/globals.wast
index 2fe329a8c..b25d63362 100644
--- a/test/dot_s/globals.wast
+++ b/test/dot_s/globals.wast
@@ -95,12 +95,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/hostFinalize.wast b/test/dot_s/hostFinalize.wast
index 79ba6be0e..e1441587a 100644
--- a/test/dot_s/hostFinalize.wast
+++ b/test/dot_s/hostFinalize.wast
@@ -29,12 +29,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/indidx.wast b/test/dot_s/indidx.wast
index 07e636621..9c9e8ca17 100644
--- a/test/dot_s/indidx.wast
+++ b/test/dot_s/indidx.wast
@@ -66,12 +66,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/indirect-import.wast b/test/dot_s/indirect-import.wast
index 8df5e85a5..be52ac330 100644
--- a/test/dot_s/indirect-import.wast
+++ b/test/dot_s/indirect-import.wast
@@ -103,12 +103,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/initializers.wast b/test/dot_s/initializers.wast
index 1c51f433f..b22646eaf 100644
--- a/test/dot_s/initializers.wast
+++ b/test/dot_s/initializers.wast
@@ -33,12 +33,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/lcomm-in-text-segment.wast b/test/dot_s/lcomm-in-text-segment.wast
index bbd7d8c48..b2cb0dc3f 100644
--- a/test/dot_s/lcomm-in-text-segment.wast
+++ b/test/dot_s/lcomm-in-text-segment.wast
@@ -20,12 +20,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/local_align.wast b/test/dot_s/local_align.wast
index 1991656fd..b8e867fbb 100644
--- a/test/dot_s/local_align.wast
+++ b/test/dot_s/local_align.wast
@@ -28,12 +28,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/macClangMetaData.wast b/test/dot_s/macClangMetaData.wast
index 2dd3ff2d2..df585dc54 100644
--- a/test/dot_s/macClangMetaData.wast
+++ b/test/dot_s/macClangMetaData.wast
@@ -33,12 +33,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/memops.wast b/test/dot_s/memops.wast
index 5cf90fcc7..176ba5f7a 100644
--- a/test/dot_s/memops.wast
+++ b/test/dot_s/memops.wast
@@ -223,12 +223,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/minimal.wast b/test/dot_s/minimal.wast
index 05c2aafc0..64792d12a 100644
--- a/test/dot_s/minimal.wast
+++ b/test/dot_s/minimal.wast
@@ -25,12 +25,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/permute.wast b/test/dot_s/permute.wast
index 9aa6a1d9b..ebe4412a5 100644
--- a/test/dot_s/permute.wast
+++ b/test/dot_s/permute.wast
@@ -20,12 +20,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/relocation.wast b/test/dot_s/relocation.wast
index c05180954..7a72943bb 100644
--- a/test/dot_s/relocation.wast
+++ b/test/dot_s/relocation.wast
@@ -30,12 +30,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/return.wast b/test/dot_s/return.wast
index 95a7cf989..cd88730a8 100644
--- a/test/dot_s/return.wast
+++ b/test/dot_s/return.wast
@@ -35,12 +35,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/start_main0.wast b/test/dot_s/start_main0.wast
index 1ffa0a347..ea8be166d 100644
--- a/test/dot_s/start_main0.wast
+++ b/test/dot_s/start_main0.wast
@@ -24,12 +24,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/start_main2.wast b/test/dot_s/start_main2.wast
index 1b5a2f50e..f5fe7d43d 100644
--- a/test/dot_s/start_main2.wast
+++ b/test/dot_s/start_main2.wast
@@ -27,12 +27,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/symbolic-offset.wast b/test/dot_s/symbolic-offset.wast
index 7ec41fff9..3f33fecdc 100644
--- a/test/dot_s/symbolic-offset.wast
+++ b/test/dot_s/symbolic-offset.wast
@@ -28,12 +28,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/text_before_type.wast b/test/dot_s/text_before_type.wast
index 29edaa45d..56848daf1 100644
--- a/test/dot_s/text_before_type.wast
+++ b/test/dot_s/text_before_type.wast
@@ -26,12 +26,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/unreachable_blocks.wast b/test/dot_s/unreachable_blocks.wast
index ecaa79014..30f7401e2 100644
--- a/test/dot_s/unreachable_blocks.wast
+++ b/test/dot_s/unreachable_blocks.wast
@@ -104,12 +104,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)
diff --git a/test/dot_s/visibilities.wast b/test/dot_s/visibilities.wast
index 4cb94d2ce..c7348f017 100644
--- a/test/dot_s/visibilities.wast
+++ b/test/dot_s/visibilities.wast
@@ -31,12 +31,9 @@
(i32.store offset=4
(i32.const 0)
(i32.and
- (i32.add
- (i32.add
- (get_local $1)
- (get_local $0)
- )
- (i32.const 15)
+ (i32.sub
+ (get_local $1)
+ (get_local $0)
)
(i32.const -16)
)