diff options
author | Alon Zakai <azakai@google.com> | 2023-07-10 16:21:43 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-10 16:21:43 -0700 |
commit | a355cfd66b711557765c9fa109d5a432146bdc74 (patch) | |
tree | 9fd9ad8d614ec05eca4483cd8ee71e975a8c5820 | |
parent | f1f3f4a504ac1ec1bcd85c86622786a90b3fd9b3 (diff) | |
download | binaryen-a355cfd66b711557765c9fa109d5a432146bdc74.tar.gz binaryen-a355cfd66b711557765c9fa109d5a432146bdc74.tar.bz2 binaryen-a355cfd66b711557765c9fa109d5a432146bdc74.zip |
Add new V8 flag for final types and remove old removed ones (#5807)
-rw-r--r-- | scripts/test/shared.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/test/shared.py b/scripts/test/shared.py index 1d48ddd68..9d75660ed 100644 --- a/scripts/test/shared.py +++ b/scripts/test/shared.py @@ -258,13 +258,12 @@ def has_shell_timeout(): # See https://github.com/v8/v8/blob/master/src/wasm/wasm-feature-flags.h V8_OPTS = [ '--wasm-staging', - '--experimental-wasm-eh', '--experimental-wasm-compilation-hints', '--experimental-wasm-gc', '--experimental-wasm-typed-funcref', '--experimental-wasm-memory64', '--experimental-wasm-extended-const', - '--experimental-wasm-nn-locals', + '--wasm-final-types', ] # external tools |