summaryrefslogtreecommitdiff
path: root/src/ir/properties.cpp
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2023-09-13 10:13:33 -0500
committerGitHub <noreply@github.com>2023-09-13 15:13:33 +0000
commit3ca8c21b89c207ce5d872e9cb2d410a869522d38 (patch)
tree10757c566326c6894512508a71719ed3b4c594fd /src/ir/properties.cpp
parentbd497d3def1e2c702e29521f097be26024a8253e (diff)
downloadbinaryen-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 'src/ir/properties.cpp')
-rw-r--r--src/ir/properties.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir/properties.cpp b/src/ir/properties.cpp
index b564b3bf1..63b7cedd1 100644
--- a/src/ir/properties.cpp
+++ b/src/ir/properties.cpp
@@ -40,7 +40,7 @@ bool isGenerative(Expression* curr, FeatureSet features) {
// to whether it is valid in a wasm constant expression.
static bool isValidInConstantExpression(Module& wasm, Expression* expr) {
if (isSingleConstantExpression(expr) || expr->is<StructNew>() ||
- expr->is<ArrayNew>() || expr->is<ArrayNewFixed>() || expr->is<I31New>() ||
+ expr->is<ArrayNew>() || expr->is<ArrayNewFixed>() || expr->is<RefI31>() ||
expr->is<StringConst>()) {
return true;
}