summaryrefslogtreecommitdiff
path: root/test/lit/basic/extended-names-passive-data-segments.wast
Commit message (Collapse)AuthorAgeFilesLines
* [Parser] Enable the new text parser by default (#6371)Thomas Lively2024-04-251-1/+1
| | | | | | | | | | | | | | The new text parser is faster and more standards compliant than the old text parser. Enable it by default in wasm-opt and update the tests to reflect the slightly different results it produces. Besides following the spec, the new parser differs from the old parser in that it: - Does not synthesize `loop` and `try` labels unnecessarily - Synthesizes different block names in some cases - Parses exports in a different order - Parses `nop`s instead of empty blocks for empty control flow arms - Does not support parsing Poppy IR - Produces different error messages - Cannot parse `pop` except as the first instruction inside a `catch`
* Fix writing of data segment names in name section (#6462)Jérôme Vouillon2024-04-021-0/+27
- Output segment names even when no memory is declared. - Only write explicit names.