Skip to content

Commit 290f73a

Browse files
committed
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} Refs: v8/v8@33e7739
1 parent 7cf913f commit 290f73a

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

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)