Skip to content

Commit 33e7739

Browse files
thibaudmichaudV8 LUCI CQ
authored andcommitted
[wasm][exnref] Enable exnref
[email protected] [email protected] Bug: 42204334 Change-Id: I0ddf1d29c936d73f7bb7909775a6bbd9a6ec5e2f Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6458423 Commit-Queue: Thibaud Michaud <[email protected]> Reviewed-by: Matthias Liedtke <[email protected]> Cr-Commit-Position: refs/heads/main@{#99795}
1 parent 0fd50e7 commit 33e7739

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

src/wasm/wasm-feature-flags.h

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,6 @@
9999
/* V8 side owner: jkummerow */ \
100100
V(imported_strings_utf8, "imported strings (utf8 features)", false) \
101101
\
102-
/* Exnref */ \
103-
/* This flag enables the new exception handling proposal */ \
104-
/* V8 side owner: thibaudm */ \
105-
V(exnref, "exnref", false) \
106-
\
107102
/* JavaScript Promise Integration proposal. */ \
108103
/* https://github.com/WebAssembly/js-promise-integration */ \
109104
/* V8 side owner: thibaudm, fgm */ \
@@ -131,7 +126,13 @@
131126
/* https://github.com/WebAssembly/js-string-builtins */ \
132127
/* V8 side owner: jkummerow */ \
133128
/* Shipped in v13.0 */ \
134-
V(imported_strings, "imported strings", true)
129+
V(imported_strings, "imported strings", true) \
130+
\
131+
/* Exnref */ \
132+
/* This flag enables the new exception handling proposal */ \
133+
/* V8 side owner: thibaudm */ \
134+
/* Shipped in v13.7 */ \
135+
V(exnref, "exnref", true)
135136

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

0 commit comments

Comments
 (0)