Skip to content

Commit 5ed3296

Browse files
nodejs-github-bottargos
authored andcommitted
deps: patch V8 to 12.9.202.19
Refs: v8/v8@12.9.202.18...12.9.202.19 PR-URL: #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>
1 parent bdddc04 commit 5ed3296

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

deps/v8/include/v8-version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#define V8_MAJOR_VERSION 12
1212
#define V8_MINOR_VERSION 9
1313
#define V8_BUILD_NUMBER 202
14-
#define V8_PATCH_LEVEL 18
14+
#define V8_PATCH_LEVEL 19
1515

1616
// Use 1 for candidates and 0 otherwise.
1717
// (Boolean macro values are not supported by all preprocessors.)

deps/v8/src/wasm/wasm-objects.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -2082,8 +2082,8 @@ Handle<WasmTagObject> WasmTagObject::New(
20822082
}
20832083

20842084
bool WasmTagObject::MatchesSignature(uint32_t expected_canonical_type_index) {
2085-
return wasm::GetWasmEngine()->type_canonicalizer()->IsCanonicalSubtype(
2086-
this->canonical_type_index(), expected_canonical_type_index);
2085+
return static_cast<uint32_t>(this->canonical_type_index()) ==
2086+
expected_canonical_type_index;
20872087
}
20882088

20892089
const wasm::FunctionSig* WasmCapiFunction::GetSignature(Zone* zone) const {

0 commit comments

Comments
 (0)