summaryrefslogtreecommitdiff
path: root/test/example/c-api-kitchen-sink.c
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2021-02-26 20:30:09 +0000
committerGitHub <noreply@github.com>2021-02-26 12:30:09 -0800
commitdb6fa71e32e67c85af03e3dab482fbd35ffd1889 (patch)
treefb83cedc8d3220c74d795ced84776f923c8dbd00 /test/example/c-api-kitchen-sink.c
parent7bef936f181b9419640d6a68e2869808c21eda3e (diff)
downloadbinaryen-db6fa71e32e67c85af03e3dab482fbd35ffd1889.tar.gz
binaryen-db6fa71e32e67c85af03e3dab482fbd35ffd1889.tar.bz2
binaryen-db6fa71e32e67c85af03e3dab482fbd35ffd1889.zip
[Wasm GC] Add array.wast and validator fixes for it (#3622)
Diffstat (limited to 'test/example/c-api-kitchen-sink.c')
-rw-r--r--test/example/c-api-kitchen-sink.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/example/c-api-kitchen-sink.c b/test/example/c-api-kitchen-sink.c
index 0f9c33f5d..cbf795e5c 100644
--- a/test/example/c-api-kitchen-sink.c
+++ b/test/example/c-api-kitchen-sink.c
@@ -261,7 +261,8 @@ void test_features() {
printf("BinaryenFeatureMultivalue: %d\n", BinaryenFeatureMultivalue());
printf("BinaryenFeatureGC: %d\n", BinaryenFeatureGC());
printf("BinaryenFeatureMemory64: %d\n", BinaryenFeatureMemory64());
- printf("BinaryenFeatureTypedFunctionReferences: %d\n", BinaryenFeatureTypedFunctionReferences());
+ printf("BinaryenFeatureTypedFunctionReferences: %d\n",
+ BinaryenFeatureTypedFunctionReferences());
printf("BinaryenFeatureAll: %d\n", BinaryenFeatureAll());
}