summaryrefslogtreecommitdiff
path: root/test/lit/binary/declarative-element-use-expr.test.wasm
Commit message (Collapse)AuthorAgeFilesLines
* Fix binary parser of declarative element segments (#6618)Rikito Taniguchi2024-06-031-0/+0
The parser was incorrectly handling the parsing of declarative element segments whose `init` is a `vec(expr)`. https://webassembly.github.io/spec/core/binary/modules.html#element-section Binry parser was simply reading a single `u32LEB` value for `init` instead of parsing a expression regardless `usesExpressions = true`. This commit updates the `WasmBinaryReader::readElementSegments` function to correctly parse the expressions for declarative element segments by calling `readExpression` instead of `getU32LEB` when `usesExpressions = true`. Resolves the parsing exception: "[parse exception: bad section size, started at ... not being equal to new position ...]" Related discussion: https://github.com/tanishiking/scala-wasm/issues/136