diff options
author | Thomas Lively <tlively@google.com> | 2024-06-20 09:58:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-20 09:58:18 -0700 |
commit | 45f6bdd4b2f694513aaed8b785bda422f0067a0d (patch) | |
tree | 4dfae85dfa7d7e612a7fe38b114e3b7e8881d20b /test/spec | |
parent | 98da69f2ee63214a4f946d55b863ee6d41d3e250 (diff) | |
download | binaryen-45f6bdd4b2f694513aaed8b785bda422f0067a0d.tar.gz binaryen-45f6bdd4b2f694513aaed8b785bda422f0067a0d.tar.bz2 binaryen-45f6bdd4b2f694513aaed8b785bda422f0067a0d.zip |
Validate memarg offsets (#6683)
For 32-bit memories, the offset value must be in the u32 range. Update
the address.wast spec test to assert that a module with an overlarge
offset value is invalid rather than malformed.
Diffstat (limited to 'test/spec')
-rw-r--r-- | test/spec/address.wast | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/spec/address.wast b/test/spec/address.wast index e071cca50..212b7a85a 100644 --- a/test/spec/address.wast +++ b/test/spec/address.wast @@ -203,7 +203,7 @@ (assert_trap (invoke "16s_bad" (i32.const 1)) "out of bounds memory access") (assert_trap (invoke "32_bad" (i32.const 1)) "out of bounds memory access") -(assert_malformed +(assert_invalid (module quote "(memory 1)" "(func (drop (i32.load offset=4294967296 (i32.const 0))))" |