summaryrefslogtreecommitdiff
path: root/test/passes/optimize-instructions_optimize-level=2.wast
Commit message (Collapse)AuthorAgeFilesLines
* Improve handling of implicit traps (#898)Alon Zakai2017-02-061-263/+0
| | | | | | | | * add --ignore-implicit-traps option, and by default do not ignore them, to properly preserve semantics * implicit traps can be reordered, but are side effects and should not be removed * add testing for --ignore-implicit-traps
* Conditionalize boolean operations based on cost (#805)Alon Zakai2016-10-261-0/+263
When we have expensive | expensive, and both are boolean, then we can execute one of them conditionally if it doesn't have side effects.