summaryrefslogtreecommitdiff
path: root/src/ir/literal-utils.h
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2020-03-17 14:55:50 -0700
committerGitHub <noreply@github.com>2020-03-17 14:55:50 -0700
commit595d8a3f360b7642a82459ea0ed0a825b0dd7043 (patch)
tree8f1fbc8ff118daeda686bb60f79989a841288773 /src/ir/literal-utils.h
parent38a795c48e269b92a1e6c54682a436ce23339a8d (diff)
downloadbinaryen-595d8a3f360b7642a82459ea0ed0a825b0dd7043.tar.gz
binaryen-595d8a3f360b7642a82459ea0ed0a825b0dd7043.tar.bz2
binaryen-595d8a3f360b7642a82459ea0ed0a825b0dd7043.zip
makeConstExpression => makeConstantExpression (#2698)
The meaning we intend is "constant", and not the "Const" node (which contains a number). So I think the full name is less confusing.
Diffstat (limited to 'src/ir/literal-utils.h')
-rw-r--r--src/ir/literal-utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir/literal-utils.h b/src/ir/literal-utils.h
index abc48f636..a7ba10926 100644
--- a/src/ir/literal-utils.h
+++ b/src/ir/literal-utils.h
@@ -39,7 +39,7 @@ inline Expression* makeZero(Type type, Module& wasm) {
return builder.makeUnary(SplatVecI32x4,
builder.makeConst(Literal(int32_t(0))));
}
- return builder.makeConstExpression(Literal::makeZero(type));
+ return builder.makeConstantExpression(Literal::makeZero(type));
}
} // namespace LiteralUtils