summaryrefslogtreecommitdiff
path: root/src/ir/literal-utils.h
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2020-01-07 11:16:44 -0800
committerGitHub <noreply@github.com>2020-01-07 11:16:44 -0800
commite8f9d207427bda2f6e22c28ff0210b294b1f70e1 (patch)
tree503b20fb06274e38af7e25e3a1a4106827c52693 /src/ir/literal-utils.h
parentf73b40c7873dbd2dd46a962f3afe5b97a7fc8b0a (diff)
downloadbinaryen-e8f9d207427bda2f6e22c28ff0210b294b1f70e1.tar.gz
binaryen-e8f9d207427bda2f6e22c28ff0210b294b1f70e1.tar.bz2
binaryen-e8f9d207427bda2f6e22c28ff0210b294b1f70e1.zip
[NFC] Enforce use of `Type::` on type names (#2434)
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 4bc79eee9..45119f2bd 100644
--- a/src/ir/literal-utils.h
+++ b/src/ir/literal-utils.h
@@ -34,7 +34,7 @@ inline Expression* makeFromInt32(int32_t x, Type type, Module& wasm) {
inline Expression* makeZero(Type type, Module& wasm) {
// TODO: Switch to using v128.const once V8 supports it
// (https://bugs.chromium.org/p/v8/issues/detail?id=8460)
- if (type == v128) {
+ if (type == Type::v128) {
Builder builder(wasm);
return builder.makeUnary(SplatVecI32x4,
builder.makeConst(Literal(int32_t(0))));