From 3ca8c21b89c207ce5d872e9cb2d410a869522d38 Mon Sep 17 00:00:00 2001 From: Thomas Lively Date: Wed, 13 Sep 2023 10:13:33 -0500 Subject: 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. --- src/passes/Print.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/passes/Print.cpp') diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp index 87e30c882..203d922d0 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -1959,7 +1959,7 @@ struct PrintExpressionContents printMedium(o, "tuple.extract "); o << curr->index; } - void visitI31New(I31New* curr) { printMedium(o, "i31.new"); } + void visitRefI31(RefI31* curr) { printMedium(o, "i31.new"); } void visitI31Get(I31Get* curr) { printMedium(o, curr->signed_ ? "i31.get_s" : "i31.get_u"); } -- cgit v1.2.3