summaryrefslogtreecommitdiff
path: root/test/printf.txt
Commit message (Collapse)AuthorAgeFilesLines
* Add support for i64.store[N] (#789)jgravelle-google2016-10-191-0/+6
* Add support for i64.store[N] Previously storing i64 in the interpreter assumed an 8byte store. Stores like i64.store8 would then use the special-case i64 storing code, when they could just use the i32.store8 code. * Add printf test for interpreter * Update wasm.js