You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 3, 2021. It is now read-only.
* The data count section is required if the `memory.init` or `data.drop`
instructions are used.
* `memory.init` had an off-by-one bug when reading at the end of a segment.
* All instructions that operate on regions need to compare length to 0
using unsigned comparison (e.g. `I32.gt_u n 0l`).
* Converting length from 32- to 64-bit now uses
`I64_convert.extend_i32_u`, instead of `Int64.of_int32`, since the
latter will sign-extend.
* The `table.copy` overlap test now uses an unsigned comparison.
* The passive element text syntax still allows function indexes, e.g.
`(elem passive $f1 $f2)`.
* Add element type to passive element segments
0 commit comments