summaryrefslogtreecommitdiff
path: root/test/merge/global-init.wast.toMerge
Commit message (Collapse)AuthorAgeFilesLines
* Delete wasm-merge (#1969)Thomas Lively2019-03-291-12/+0
| | | It is not very useful.
* Massive renaming (#1855)Thomas Lively2019-01-071-5/+5
| | | | | | Automated renaming according to https://github.com/WebAssembly/spec/issues/884#issuecomment-426433329.
* Support constant globals in precompute pass (#1622)Daniel Wirtz2018-07-181-0/+2
| | | | | | | | | This PR includes non-mutable globals in precompute, which will allow me to continue removing manual inlining of constants in AssemblyScript without breaking something. Related: #1621, i.e. enum Animal { CAT = 0, DOG = CAT + 1 // requires that `Animal.CAT` is evaluated to // precompute the constant value for `Animal.DOG` }
* wasm-merge tool (#919)Alon Zakai2017-04-171-0/+10
wasm-merge tool: combines two wasm files into a larger one, handling collisions, and aware of the dynamic linking conventions. it does not do full static linking, but may eventually.