From c1e2c9680aeebb2ec3d479c79a8b653966085b2d Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Thu, 21 May 2026 14:44:54 -0700 Subject: [PATCH] fix --- scripts/fuzz_opt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index be1b208b456..93b609dbe92 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -2235,9 +2235,9 @@ def do_handle_pair(self, input, before_wasm, after_wasm, opts): # We are about to optimize, and do not trust the given wasm file to # have marked all js-called methods properly. In particular, it could # have a configureAll that is not in the start function. - full_opts = opts + [ + full_opts = [ '--mark-js-called', - ] + ] + opts # Optimize. post_wasm = abspath('post.wasm')