diff options
author | Max Graey <maxgraey@gmail.com> | 2022-09-12 22:36:56 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-12 12:36:56 -0700 |
commit | aa36fc4f67cf38f097b4c2b4db53b718880f9c3a (patch) | |
tree | ad056acbe1e294ae49f8aebc22bac97f2f4da829 /test/example/c-api-kitchen-sink.c | |
parent | 73b562e24e958e6d5c15aa96ddf4b2e8f31162f8 (diff) | |
download | binaryen-aa36fc4f67cf38f097b4c2b4db53b718880f9c3a.tar.gz binaryen-aa36fc4f67cf38f097b4c2b4db53b718880f9c3a.tar.bz2 binaryen-aa36fc4f67cf38f097b4c2b4db53b718880f9c3a.zip |
[C-/JS-API] Add new BinaryenMemoryIs64 API + add memory64 argument for BinaryenSetMemory (#4963)
Diffstat (limited to 'test/example/c-api-kitchen-sink.c')
-rw-r--r-- | test/example/c-api-kitchen-sink.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/example/c-api-kitchen-sink.c b/test/example/c-api-kitchen-sink.c index 37aa15bf8..267e0763d 100644 --- a/test/example/c-api-kitchen-sink.c +++ b/test/example/c-api-kitchen-sink.c @@ -511,6 +511,7 @@ void test_core() { segmentSizes, 2, 1, + 0, "0"); BinaryenExpressionRef valueList[] = { @@ -1991,6 +1992,7 @@ void test_for_each() { segmentSizes, 2, 0, + 0, "0"); BinaryenAddGlobal(module, "a-global", |