From 53aa303bc9669acf04500fb8ca3a8f6c08d4133d Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Wed, 5 Nov 2025 12:28:03 -0800 Subject: [PATCH] work --- scripts/fuzz_opt.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index 6ddf2cab6fe..13eb80791aa 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -681,6 +681,10 @@ def get_v8_extra_flags(): if random.random() < 0.5: flags += ['--future'] + # Sometimes add V8's type assertions. + if random.random() < 0.5: + flags += ['--wasm-assert-types'] + return flags