From 6036726eb981b6c4b42047513b9d3f4ac865daac Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Wed, 24 Oct 2018 11:30:15 +0200 Subject: BASELINE: Update Chromium to 70.0.3538.78 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ie634710bf039e26c1957f4ae45e101bd4c434ae7 Reviewed-by: Michael BrĂ¼ning --- chromium/v8/src/wasm/wasm-opcodes.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chromium/v8/src/wasm/wasm-opcodes.cc') diff --git a/chromium/v8/src/wasm/wasm-opcodes.cc b/chromium/v8/src/wasm/wasm-opcodes.cc index 22c906e2706..650cb629f62 100644 --- a/chromium/v8/src/wasm/wasm-opcodes.cc +++ b/chromium/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; } -- cgit v1.2.1