Skip to content

Commit

Permalink
deps: patch V8 to 12.9.202.19
Browse files Browse the repository at this point in the history
Refs: v8/v8@12.9.202.18...12.9.202.19
PR-URL: #55057
Reviewed-By: Jiawen Geng <[email protected]>
Reviewed-By: Richard Lau <[email protected]>
Reviewed-By: Michaël Zasso <[email protected]>
Reviewed-By: Marco Ippolito <[email protected]>
Reviewed-By: Rafael Gonzaga <[email protected]>
  • Loading branch information
nodejs-github-bot authored and targos committed Sep 25, 2024
1 parent bdddc04 commit 5ed3296
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deps/v8/include/v8-version.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define V8_MAJOR_VERSION 12
#define V8_MINOR_VERSION 9
#define V8_BUILD_NUMBER 202
#define V8_PATCH_LEVEL 18
#define V8_PATCH_LEVEL 19

// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)
Expand Down
4 changes: 2 additions & 2 deletions deps/v8/src/wasm/wasm-objects.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2082,8 +2082,8 @@ Handle<WasmTagObject> WasmTagObject::New(
}

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

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

0 comments on commit 5ed3296

Please sign in to comment.