diff options
author | Michaël Zasso <targos@protonmail.com> | 2018-12-04 08:20:37 +0100 |
---|---|---|
committer | Michaël Zasso <targos@protonmail.com> | 2018-12-06 15:23:33 +0100 |
commit | 9b4bf7de6c9a7c25f116c7a502384c20b5cfaea3 (patch) | |
tree | 2b0c843168dafb939d8df8a15b2aa72b76dee51d /deps/v8/src/wasm/function-compiler.cc | |
parent | b8fbe69db1292307adb2c2b2e0d5ef48c4ab2faf (diff) | |
download | node-new-9b4bf7de6c9a7c25f116c7a502384c20b5cfaea3.tar.gz |
deps: update V8 to 7.1.302.28
PR-URL: https://github.com/nodejs/node/pull/23423
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Myles Borins <myles.borins@gmail.com>
Diffstat (limited to 'deps/v8/src/wasm/function-compiler.cc')
-rw-r--r-- | deps/v8/src/wasm/function-compiler.cc | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/deps/v8/src/wasm/function-compiler.cc b/deps/v8/src/wasm/function-compiler.cc index c4209d8c9c..4cec770ecc 100644 --- a/deps/v8/src/wasm/function-compiler.cc +++ b/deps/v8/src/wasm/function-compiler.cc @@ -45,13 +45,11 @@ ExecutionTier WasmCompilationUnit::GetDefaultExecutionTier() { WasmCompilationUnit::WasmCompilationUnit(WasmEngine* wasm_engine, ModuleEnv* env, NativeModule* native_module, - FunctionBody body, WasmName name, - int index, Counters* counters, - ExecutionTier mode) + FunctionBody body, int index, + Counters* counters, ExecutionTier mode) : env_(env), wasm_engine_(wasm_engine), func_body_(body), - func_name_(name), counters_(counters), func_index_(index), native_module_(native_module), @@ -71,7 +69,7 @@ WasmCompilationUnit::WasmCompilationUnit(WasmEngine* wasm_engine, // Declared here such that {LiftoffCompilationUnit} and // {TurbofanWasmCompilationUnit} can be opaque in the header file. -WasmCompilationUnit::~WasmCompilationUnit() {} +WasmCompilationUnit::~WasmCompilationUnit() = default; void WasmCompilationUnit::ExecuteCompilation(WasmFeatures* detected) { auto size_histogram = SELECT_WASM_COUNTER(counters_, env_->module->origin, @@ -155,7 +153,6 @@ WasmCode* WasmCompilationUnit::CompileWasmFunction( WasmCompilationUnit unit(isolate->wasm_engine(), env, native_module, function_body, - wire_bytes.GetNameOrNull(function, env->module), function->func_index, isolate->counters(), mode); unit.ExecuteCompilation(detected); return unit.FinishCompilation(thrower); |