Skip to content

Commit 21abc95

Browse files
thibaudmichaudaduh95
authored andcommitted
deps: V8: cherry-pick 33e7739c134d
Original commit message: [wasm][exnref] Enable exnref R=mliedtke@chromium.org CC=ecmziegler@chromium.org Bug: 42204334 Change-Id: I0ddf1d29c936d73f7bb7909775a6bbd9a6ec5e2f Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6458423 Commit-Queue: Thibaud Michaud <thibaudm@chromium.org> Reviewed-by: Matthias Liedtke <mliedtke@chromium.org> Cr-Commit-Position: refs/heads/main@{#99795} PR-URL: #62567 Refs: v8/v8@33e7739 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
1 parent 3ee4450 commit 21abc95

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

common.gypi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
# Reset this number to 0 on major V8 upgrades.
4040
# Increment by one for each non-official patch applied to deps/v8.
41-
'v8_embedder_string': '-node.47',
41+
'v8_embedder_string': '-node.48',
4242

4343
##### V8 defaults for Node.js #####
4444

deps/v8/src/wasm/wasm-feature-flags.h

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,6 @@
105105
/* V8 side owner: jkummerow */ \
106106
V(imported_strings_utf8, "imported strings (utf8 features)", false) \
107107
\
108-
/* Exnref */ \
109-
/* This flag enables the new exception handling proposal */ \
110-
/* V8 side owner: thibaudm */ \
111-
V(exnref, "exnref", false) \
112-
\
113108
/* JavaScript Promise Integration proposal. */ \
114109
/* https://github.com/WebAssembly/js-promise-integration */ \
115110
/* V8 side owner: thibaudm, fgm */ \
@@ -130,7 +125,13 @@
130125
/* https://github.com/WebAssembly/js-string-builtins */ \
131126
/* V8 side owner: jkummerow */ \
132127
/* Shipped in v13.0 */ \
133-
V(imported_strings, "imported strings", true)
128+
V(imported_strings, "imported strings", true) \
129+
\
130+
/* Exnref */ \
131+
/* This flag enables the new exception handling proposal */ \
132+
/* V8 side owner: thibaudm */ \
133+
/* Shipped in v13.7 */ \
134+
V(exnref, "exnref", true)
134135

135136
// Combination of all available wasm feature flags.
136137
#define FOREACH_WASM_FEATURE_FLAG(V) \

0 commit comments

Comments
 (0)