diff options
Diffstat (limited to 'deps/v8/src/wasm/wasm-opcodes.cc')
-rw-r--r-- | deps/v8/src/wasm/wasm-opcodes.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/wasm/wasm-opcodes.cc b/deps/v8/src/wasm/wasm-opcodes.cc index 22c906e270..650cb629f6 100644 --- a/deps/v8/src/wasm/wasm-opcodes.cc +++ b/deps/v8/src/wasm/wasm-opcodes.cc @@ -374,7 +374,7 @@ std::ostream& operator<<(std::ostream& os, const FunctionSig& sig) { bool IsJSCompatibleSignature(const FunctionSig* sig) { for (auto type : sig->all()) { - if (type == wasm::kWasmI64 || type == wasm::kWasmS128) return false; + if (type == kWasmI64 || type == kWasmS128) return false; } return sig->return_count() <= 1; } |