diff options
Diffstat (limited to 'test/example')
-rw-r--r-- | test/example/c-api-kitchen-sink.c | 4 | ||||
-rw-r--r-- | test/example/c-api-kitchen-sink.txt | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/example/c-api-kitchen-sink.c b/test/example/c-api-kitchen-sink.c index efd343be9..cd305c69b 100644 --- a/test/example/c-api-kitchen-sink.c +++ b/test/example/c-api-kitchen-sink.c @@ -1050,10 +1050,10 @@ void test_core() { BinaryenRefAsNonNull(), BinaryenRefNull(module, BinaryenTypeNullref())), BinaryenRefAs(module, - BinaryenRefAsExternInternalize(), + BinaryenRefAsAnyConvertExtern(), BinaryenRefNull(module, BinaryenTypeNullExternref())), BinaryenRefAs(module, - BinaryenRefAsExternExternalize(), + BinaryenRefAsExternConvertAny(), BinaryenRefNull(module, BinaryenTypeNullref())), // Exception handling BinaryenTry(module, NULL, tryBody, catchTags, 1, catchBodies, 2, NULL), diff --git a/test/example/c-api-kitchen-sink.txt b/test/example/c-api-kitchen-sink.txt index 5ba35fb0e..140d8e948 100644 --- a/test/example/c-api-kitchen-sink.txt +++ b/test/example/c-api-kitchen-sink.txt @@ -2137,12 +2137,12 @@ BinaryenFeatureAll: 262143 ) ) (drop - (extern.internalize + (any.convert_extern (ref.null noextern) ) ) (drop - (extern.externalize + (extern.convert_any (ref.null none) ) ) |