diff options
author | Sam Clegg <sbc@chromium.org> | 2018-11-29 15:29:58 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-29 15:29:58 -0800 |
commit | 955a9a9440f26438ba50e35ebe57a86a5111d4a1 (patch) | |
tree | 356be2abca1a38f7b00614d691f28f1e2d0823bc | |
parent | 8d915d515b366842fd8934a712527b952899ce35 (diff) | |
download | binaryen-955a9a9440f26438ba50e35ebe57a86a5111d4a1.tar.gz binaryen-955a9a9440f26438ba50e35ebe57a86a5111d4a1.tar.bz2 binaryen-955a9a9440f26438ba50e35ebe57a86a5111d4a1.zip |
Format changelog (#1783)
-rw-r--r-- | CHANGELOG.md | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 43122b845..36abe6199 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,16 +16,24 @@ Current Trunk v.55 ==== -- `RelooperCreate` in the C API now has a Module parameter, and `RelooperRenderAndDispose` does not. + +- `RelooperCreate` in the C API now has a Module parameter, and + `RelooperRenderAndDispose` does not. - The JS API now has the `Relooper` constructor receive the `Module`. - Relooper: Condition properties on Branches must not have side effects. older ===== -- `BinaryenSetFunctionTable` in the C API no longer accepts an array of functions, instead it accepts an array of function names, `const char** funcNames`. Previously, you could not include imported functions because they are of type `BinaryenImportRef` instead of `BinaryenFunctionRef`. #1650 +- `BinaryenSetFunctionTable` in the C API no longer accepts an array of + functions, instead it accepts an array of function names, `const char** + funcNames`. Previously, you could not include imported functions because they + are of type `BinaryenImportRef` instead of `BinaryenFunctionRef`. #1650 -- `BinaryenSetFunctionTable` in the C API now expects the initial and maximum table size as additional parameters, like `BinaryenSetMemory` does for pages, so tables can be grown dynamically. #1687 +- `BinaryenSetFunctionTable` in the C API now expects the initial and maximum + table size as additional parameters, like `BinaryenSetMemory` does for pages, + so tables can be grown dynamically. #1687 -- Add `shared` parameters to `BinaryenAddMemoryImport` and `BinaryenSetMemory`, to support a shared memory. #1686 +- Add `shared` parameters to `BinaryenAddMemoryImport` and `BinaryenSetMemory`, + to support a shared memory. #1686 |