mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
deps: patch V8 to 12.9.202.19
Refs: https://github.com/v8/v8/compare/12.9.202.18...12.9.202.19 PR-URL: https://github.com/nodejs/node/pull/55057 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
This commit is contained in:
parent
bdddc04dff
commit
5ed3296051
2
deps/v8/include/v8-version.h
vendored
2
deps/v8/include/v8-version.h
vendored
@ -11,7 +11,7 @@
|
|||||||
#define V8_MAJOR_VERSION 12
|
#define V8_MAJOR_VERSION 12
|
||||||
#define V8_MINOR_VERSION 9
|
#define V8_MINOR_VERSION 9
|
||||||
#define V8_BUILD_NUMBER 202
|
#define V8_BUILD_NUMBER 202
|
||||||
#define V8_PATCH_LEVEL 18
|
#define V8_PATCH_LEVEL 19
|
||||||
|
|
||||||
// Use 1 for candidates and 0 otherwise.
|
// Use 1 for candidates and 0 otherwise.
|
||||||
// (Boolean macro values are not supported by all preprocessors.)
|
// (Boolean macro values are not supported by all preprocessors.)
|
||||||
|
4
deps/v8/src/wasm/wasm-objects.cc
vendored
4
deps/v8/src/wasm/wasm-objects.cc
vendored
@ -2082,8 +2082,8 @@ Handle<WasmTagObject> WasmTagObject::New(
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool WasmTagObject::MatchesSignature(uint32_t expected_canonical_type_index) {
|
bool WasmTagObject::MatchesSignature(uint32_t expected_canonical_type_index) {
|
||||||
return wasm::GetWasmEngine()->type_canonicalizer()->IsCanonicalSubtype(
|
return static_cast<uint32_t>(this->canonical_type_index()) ==
|
||||||
this->canonical_type_index(), expected_canonical_type_index);
|
expected_canonical_type_index;
|
||||||
}
|
}
|
||||||
|
|
||||||
const wasm::FunctionSig* WasmCapiFunction::GetSignature(Zone* zone) const {
|
const wasm::FunctionSig* WasmCapiFunction::GetSignature(Zone* zone) const {
|
||||||
|
Loading…
Reference in New Issue
Block a user