summaryrefslogtreecommitdiff
path: root/test/lit/wasm-split/multi-memory-lowering-import-error.wast
Commit message (Collapse)AuthorAgeFilesLines
* [Parser] Enable the new text parser by default (#6371)Thomas Lively2024-04-251-8/+0
| | | | | | | | | | | | | | 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`
* Maintain first memory import/export in Multi-Memory Lowering Pass (#5363)Ashley Nelson2023-01-031-0/+8
This PR maintains the first memory's import/export in the single combined memory after multi-memories are lowered.