summaryrefslogtreecommitdiff
path: root/test/example/c-api-kitchen-sink.c
diff options
context:
space:
mode:
authorDaniel Wirtz <dcode@dcode.io>2020-09-21 22:32:39 +0200
committerGitHub <noreply@github.com>2020-09-21 22:32:39 +0200
commit5eebc8a4d053ed7bcbd88f787cab60b0f246e71d (patch)
treeadb74ac33ad5ff24830b1d408976d302a2df7a14 /test/example/c-api-kitchen-sink.c
parent51350a8d2e7a361cf658951798351fc242420328 (diff)
downloadbinaryen-5eebc8a4d053ed7bcbd88f787cab60b0f246e71d.tar.gz
binaryen-5eebc8a4d053ed7bcbd88f787cab60b0f246e71d.tar.bz2
binaryen-5eebc8a4d053ed7bcbd88f787cab60b0f246e71d.zip
Add Memory64 feature flag to the C and JS APIs (#3148)
Diffstat (limited to 'test/example/c-api-kitchen-sink.c')
-rw-r--r--test/example/c-api-kitchen-sink.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/example/c-api-kitchen-sink.c b/test/example/c-api-kitchen-sink.c
index 6b4aaec7d..09a6897eb 100644
--- a/test/example/c-api-kitchen-sink.c
+++ b/test/example/c-api-kitchen-sink.c
@@ -260,6 +260,7 @@ void test_features() {
printf("BinaryenFeatureReferenceTypes: %d\n", BinaryenFeatureReferenceTypes());
printf("BinaryenFeatureMultivalue: %d\n", BinaryenFeatureMultivalue());
printf("BinaryenFeatureGC: %d\n", BinaryenFeatureGC());
+ printf("BinaryenFeatureMemory64: %d\n", BinaryenFeatureMemory64());
printf("BinaryenFeatureAll: %d\n", BinaryenFeatureAll());
}