summaryrefslogtreecommitdiff
path: root/test/passes/simplify-locals-notee.wast
Commit message (Collapse)AuthorAgeFilesLines
* Require `then` and `else` with `if` (#6201)Thomas Lively2024-01-041-8/+14
| | | | | | | | | | | | We previously supported (and primarily used) a non-standard text format for conditionals in which the condition, if-true expression, and if-false expression were all simply s-expression children of the `if` expression. The standard text format, however, requires the use of `then` and `else` forms to introduce the if-true and if-false arms of the conditional. Update the legacy text parser to require the standard format and update all tests to match. Update the printer to print the standard format as well. The .wast and .wat test inputs were mechanically updated with this script: https://gist.github.com/tlively/85ae7f01f92f772241ec994c840ccbb1
* Massive renaming (#1855)Thomas Lively2019-01-071-13/+13
| | | | | | Automated renaming according to https://github.com/WebAssembly/spec/issues/884#issuecomment-426433329.
* Support new result syntax for if/loop/block (#1047)Sam Clegg2017-06-121-2/+2
| | | | | | Support both syntax formats in input since the old spec tests still need to be parsable.
* improve local simplication: simplify without if/block structure values ↵Alon Zakai2016-11-061-0/+17
| | | | before coalesce, so that coalesce can remove all copies, then do another pass of full simplification after it
* add variants of simplify-locals with and without teeing and structural optsAlon Zakai2016-11-051-0/+15