summaryrefslogtreecommitdiff
path: root/test/binaryen.js/validation_errors.js.txt
Commit message (Collapse)AuthorAgeFilesLines
* Optimize equivalent locals (#1540)Alon Zakai2018-05-101-0/+2
| | | | | | | | | If locals are known to contain the same value, we can * Pick which local to use for a get_local of any of them. Makes sense to prefer the most common, to increase the chance of one dropping to zero uses. * Remove copies between a local and one that we know contains the same value. This is a consistent win, small though, around 0.1-0.2%.
* Validation fixes for #1317 (#1347)Alon Zakai2018-01-031-0/+6
* add get_global/set_global validation * validate get_local index * update builds * fix tests