summaryrefslogtreecommitdiff
path: root/test/unreachable-pops.wasm.fromBinary
Commit message (Collapse)AuthorAgeFilesLines
* Optimize out memory and table when possible (#1352)Alon Zakai2018-01-101-1/+0
| | | We can remove the memory/table (itself, or an import if imported) if they are not used. This is pretty minor on a large wasm file, but when reading small wasts it's very noticeable to have an unused memory and table all the time.
* Emit binary function index in comment in text format, for convenience (#1232)Alon Zakai2017-10-201-1/+1
|
* Avoid new blocks in binary reading/writing (#1165)Alon Zakai2017-09-121-1/+1
| | | | | | * don't emit a toplevel block if we don't need to, as in wasm it is a list context * don't create unnecessary blocks in wasm reading
* Ignore unreachable code in wasm binaries (#1122)Alon Zakai2017-08-221-0/+10
Ignoring unreachable code in wasm binaries lets us avoid corner cases with unstructured code in wasm binaries that is a poor fit for Binaryen's structured IR.