From f7f6c928c1c9c136b7926f892b8a2fda11d8b4b2 Mon Sep 17 00:00:00 2001 From: Myles Borins Date: Tue, 24 Sep 2019 11:56:38 -0400 Subject: deps: update V8 to 7.8.279.9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/29694 Reviewed-By: Colin Ihrig Reviewed-By: Anna Henningsen Reviewed-By: Gus Caplan Reviewed-By: Jiawen Geng Reviewed-By: Michaël Zasso Reviewed-By: Tobias Nießen Reviewed-By: Ujjwal Sharma --- deps/v8/test/common/wasm/OWNERS | 2 +- deps/v8/test/common/wasm/wasm-module-runner.cc | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'deps/v8/test/common') diff --git a/deps/v8/test/common/wasm/OWNERS b/deps/v8/test/common/wasm/OWNERS index 4b6b34d24a..a89e5f1056 100644 --- a/deps/v8/test/common/wasm/OWNERS +++ b/deps/v8/test/common/wasm/OWNERS @@ -1 +1 @@ -file://src/wasm/OWNERS +file:../../../src/wasm/OWNERS diff --git a/deps/v8/test/common/wasm/wasm-module-runner.cc b/deps/v8/test/common/wasm/wasm-module-runner.cc index 8de7655914..d2869509cc 100644 --- a/deps/v8/test/common/wasm/wasm-module-runner.cc +++ b/deps/v8/test/common/wasm/wasm-module-runner.cc @@ -101,6 +101,12 @@ bool InterpretWasmModuleForTesting(Isolate* isolate, case kWasmF64: arguments[i] = WasmValue(0.0); break; + case kWasmAnyRef: + case kWasmFuncRef: + case kWasmExnRef: + arguments[i] = + WasmValue(Handle::cast(isolate->factory()->null_value())); + break; default: UNREACHABLE(); } -- cgit v1.2.3