From 5ed32960512dca80e6c4e1489568d88c6ac3e0ea Mon Sep 17 00:00:00 2001 From: "Node.js GitHub Bot" Date: Sun, 22 Sep 2024 00:34:57 +0000 Subject: [PATCH] deps: patch V8 to 12.9.202.19 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Reviewed-By: Richard Lau Reviewed-By: Michaƫl Zasso Reviewed-By: Marco Ippolito Reviewed-By: Rafael Gonzaga --- deps/v8/include/v8-version.h | 2 +- deps/v8/src/wasm/wasm-objects.cc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deps/v8/include/v8-version.h b/deps/v8/include/v8-version.h index 2f396c1c7a6d10..c5cefa77702e8a 100644 --- a/deps/v8/include/v8-version.h +++ b/deps/v8/include/v8-version.h @@ -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.) diff --git a/deps/v8/src/wasm/wasm-objects.cc b/deps/v8/src/wasm/wasm-objects.cc index 785aab50bc890c..9f63193e3c4149 100644 --- a/deps/v8/src/wasm/wasm-objects.cc +++ b/deps/v8/src/wasm/wasm-objects.cc @@ -2082,8 +2082,8 @@ Handle 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(this->canonical_type_index()) == + expected_canonical_type_index; } const wasm::FunctionSig* WasmCapiFunction::GetSignature(Zone* zone) const {