summaryrefslogtreecommitdiff
path: root/test/wasm2js/add_div.wast
Commit message (Collapse)AuthorAgeFilesLines
* Use new wast parser in wasm2js (#6606)Thomas Lively2024-05-291-1/+1
| | | | When generating assertions, traverse the `WASTScript` data structure rather than interleaving assertion parsing with emitting.
* Do not hoist truncation of wasm2js divisions (#2305)Thomas Lively2019-08-261-0/+15
It is not valid to defer the truncation of divisions because accumulated non-integral results can produce different values when they are combined before truncation. This was causing a test failure in the Rust test suite.