diff options
author | Thomas Lively <tlively@google.com> | 2023-09-13 10:13:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-13 15:13:33 +0000 |
commit | 3ca8c21b89c207ce5d872e9cb2d410a869522d38 (patch) | |
tree | 10757c566326c6894512508a71719ed3b4c594fd /test/example | |
parent | bd497d3def1e2c702e29521f097be26024a8253e (diff) | |
download | binaryen-3ca8c21b89c207ce5d872e9cb2d410a869522d38.tar.gz binaryen-3ca8c21b89c207ce5d872e9cb2d410a869522d38.tar.bz2 binaryen-3ca8c21b89c207ce5d872e9cb2d410a869522d38.zip |
Replace I31New with RefI31 everywhere (#5930)
Globally replace the source string "I31New" with "RefI31" in preparation for
renaming the instruction from "i31.new" to "ref.i31", as implemented in the spec
in https://github.com/WebAssembly/gc/pull/422. This would be NFC, except that it
also changes the string in the external-facing C APIs.
A follow-up PR will make the corresponding behavioral change.
Diffstat (limited to 'test/example')
-rw-r--r-- | test/example/c-api-kitchen-sink.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/example/c-api-kitchen-sink.c b/test/example/c-api-kitchen-sink.c index c2c5d6e31..d3368a6b1 100644 --- a/test/example/c-api-kitchen-sink.c +++ b/test/example/c-api-kitchen-sink.c @@ -471,7 +471,7 @@ void test_core() { funcrefExpr = BinaryenRefFunc(module, "kitchen()sinker", BinaryenTypeFuncref()); BinaryenExpressionRef i31refExpr = - BinaryenI31New(module, makeInt32(module, 1)); + BinaryenRefI31(module, makeInt32(module, 1)); // Tags BinaryenAddTag(module, "a-tag", BinaryenTypeInt32(), BinaryenTypeNone()); @@ -1101,9 +1101,9 @@ void test_core() { BinaryenMemorySize(module, "0", false), BinaryenMemoryGrow(module, makeInt32(module, 0), "0", false), // GC - BinaryenI31New(module, makeInt32(module, 0)), + BinaryenRefI31(module, makeInt32(module, 0)), BinaryenI31Get(module, i31refExpr, 1), - BinaryenI31Get(module, BinaryenI31New(module, makeInt32(module, 2)), 0), + BinaryenI31Get(module, BinaryenRefI31(module, makeInt32(module, 2)), 0), BinaryenRefTest( module, BinaryenGlobalGet(module, "i8Array-global", i8Array), i8Array), BinaryenRefCast( |