summaryrefslogtreecommitdiff
path: root/deps/v8/src/wasm/wasm-import-wrapper-cache.cc
diff options
context:
space:
mode:
authorMichaƫl Zasso <targos@protonmail.com>2023-03-30 12:11:08 +0200
committerNode.js GitHub Bot <github-bot@iojs.org>2023-03-31 14:15:23 +0000
commitf226350fcbebd4449fb0034fdaffa147e4de28ea (patch)
tree8896397ec8829c238012bfbe9781f4e2d94708bc /deps/v8/src/wasm/wasm-import-wrapper-cache.cc
parent10928cb0a4643a11c02af7bab93fc4b5abe2ce7d (diff)
downloadnode-new-f226350fcbebd4449fb0034fdaffa147e4de28ea.tar.gz
deps: update V8 to 11.3.244.4
PR-URL: https://github.com/nodejs/node/pull/47251 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
Diffstat (limited to 'deps/v8/src/wasm/wasm-import-wrapper-cache.cc')
-rw-r--r--deps/v8/src/wasm/wasm-import-wrapper-cache.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/src/wasm/wasm-import-wrapper-cache.cc b/deps/v8/src/wasm/wasm-import-wrapper-cache.cc
index bbe3a480e1..b600258d0b 100644
--- a/deps/v8/src/wasm/wasm-import-wrapper-cache.cc
+++ b/deps/v8/src/wasm/wasm-import-wrapper-cache.cc
@@ -22,7 +22,7 @@ WasmCode*& WasmImportWrapperCache::operator[](
return entry_map_[key];
}
-WasmCode* WasmImportWrapperCache::Get(compiler::WasmImportCallKind kind,
+WasmCode* WasmImportWrapperCache::Get(ImportCallKind kind,
uint32_t canonical_type_index,
int expected_arity,
Suspend suspend) const {
@@ -34,7 +34,7 @@ WasmCode* WasmImportWrapperCache::Get(compiler::WasmImportCallKind kind,
return it->second;
}
-WasmCode* WasmImportWrapperCache::MaybeGet(compiler::WasmImportCallKind kind,
+WasmCode* WasmImportWrapperCache::MaybeGet(ImportCallKind kind,
uint32_t canonical_type_index,
int expected_arity,
Suspend suspend) const {