summaryrefslogtreecommitdiff
path: root/test/lit/passes/instrument-memory64.wast
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-01-08 11:46:30 -0800
committerGitHub <noreply@github.com>2024-01-08 11:46:30 -0800
commitcc0fab918aed3643abdc3566ade3f70f06d1d954 (patch)
tree923fe1e125e7b4f95c2dfa20e4525f1c10a190f2 /test/lit/passes/instrument-memory64.wast
parent82057de7666b84424f8d2bd90e941762e4e14f0e (diff)
downloadbinaryen-cc0fab918aed3643abdc3566ade3f70f06d1d954.tar.gz
binaryen-cc0fab918aed3643abdc3566ade3f70f06d1d954.tar.bz2
binaryen-cc0fab918aed3643abdc3566ade3f70f06d1d954.zip
Fix incorrect wat in tests (#6207)
The new wat parser is much more strict than the legacy wat parser; the latter accepts all sorts of things that the spec does not allow. To ease an eventual transition to using the new wat parser by default, update the tests to use the standard text format in many places where they previously did not. We do not yet have a way to prevent new errors from being introduced into the test suite, but at least there will now be many fewer errors when it comes time to make the switch.
Diffstat (limited to 'test/lit/passes/instrument-memory64.wast')
-rw-r--r--test/lit/passes/instrument-memory64.wast46
1 files changed, 23 insertions, 23 deletions
diff --git a/test/lit/passes/instrument-memory64.wast b/test/lit/passes/instrument-memory64.wast
index 832777a45..1f3be75d5 100644
--- a/test/lit/passes/instrument-memory64.wast
+++ b/test/lit/passes/instrument-memory64.wast
@@ -421,20 +421,20 @@
(drop (f32.load (i64.const 0)))
(drop (f64.load (i64.const 0)))
- (drop (i32.load8_s align=1 offset=1 (i64.const 0)))
- (drop (i32.load8_u align=1 offset=2 (i64.const 0)))
- (drop (i32.load16_s align=1 offset=3 (i64.const 0)))
- (drop (i32.load16_u align=1 offset=4 (i64.const 0)))
- (drop (i32.load align=2 offset=5 (i64.const 0)))
- (drop (i64.load8_s align=1 offset=6 (i64.const 0)))
- (drop (i64.load8_u align=1 offset=7 (i64.const 0)))
- (drop (i64.load16_s align=1 offset=8 (i64.const 0)))
- (drop (i64.load16_u align=1 offset=9 (i64.const 0)))
- (drop (i64.load32_s align=2 offset=10 (i64.const 0)))
- (drop (i64.load32_u align=2 offset=11 (i64.const 0)))
- (drop (i64.load align=2 offset=12 (i64.const 0)))
- (drop (f32.load align=2 offset=13 (i64.const 0)))
- (drop (f64.load align=2 offset=14 (i64.const 0)))
+ (drop (i32.load8_s offset=1 align=1 (i64.const 0)))
+ (drop (i32.load8_u offset=2 align=1 (i64.const 0)))
+ (drop (i32.load16_s offset=3 align=1 (i64.const 0)))
+ (drop (i32.load16_u offset=4 align=1 (i64.const 0)))
+ (drop (i32.load offset=5 align=2 (i64.const 0)))
+ (drop (i64.load8_s offset=6 align=1 (i64.const 0)))
+ (drop (i64.load8_u offset=7 align=1 (i64.const 0)))
+ (drop (i64.load16_s offset=8 align=1 (i64.const 0)))
+ (drop (i64.load16_u offset=9 align=1 (i64.const 0)))
+ (drop (i64.load32_s offset=10 align=2 (i64.const 0)))
+ (drop (i64.load32_u offset=11 align=2 (i64.const 0)))
+ (drop (i64.load offset=12 align=2 (i64.const 0)))
+ (drop (f32.load offset=13 align=2 (i64.const 0)))
+ (drop (f64.load offset=14 align=2 (i64.const 0)))
)
;; CHECK: (func $B
@@ -666,14 +666,14 @@
(f32.store (i64.const 0) (f32.const 8))
(f64.store (i64.const 0) (f64.const 9))
- (i32.store8 align=1 offset=1 (i64.const 0) (i32.const 1))
- (i32.store16 align=1 offset=2 (i64.const 0) (i32.const 2))
- (i32.store align=2 offset=3 (i64.const 0) (i32.const 3))
- (i64.store8 align=1 offset=4 (i64.const 0) (i64.const 4))
- (i64.store16 align=2 offset=5 (i64.const 0) (i64.const 5))
- (i64.store32 align=2 offset=6 (i64.const 0) (i64.const 6))
- (i64.store align=2 offset=7 (i64.const 0) (i64.const 7))
- (f32.store align=2 offset=8 (i64.const 0) (f32.const 8))
- (f64.store align=2 offset=9 (i64.const 0) (f64.const 9))
+ (i32.store8 offset=1 align=1 (i64.const 0) (i32.const 1))
+ (i32.store16 offset=2 align=1 (i64.const 0) (i32.const 2))
+ (i32.store offset=3 align=2 (i64.const 0) (i32.const 3))
+ (i64.store8 offset=4 align=1 (i64.const 0) (i64.const 4))
+ (i64.store16 offset=5 align=2 (i64.const 0) (i64.const 5))
+ (i64.store32 offset=6 align=2 (i64.const 0) (i64.const 6))
+ (i64.store offset=7 align=2 (i64.const 0) (i64.const 7))
+ (f32.store offset=8 align=2 (i64.const 0) (f32.const 8))
+ (f64.store offset=9 align=2 (i64.const 0) (f64.const 9))
)
)