diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/fuzz_opt.py | 1 | ||||
-rwxr-xr-x | scripts/gen-s-parser.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index 8bef4e98c..3cf711e7b 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -328,6 +328,7 @@ INITIAL_CONTENTS_IGNORE = [ 'typed_continuations_resume.wast', 'typed_continuations_contnew.wast', 'typed_continuations_contbind.wast', + 'typed_continuations_suspend.wast', # New EH implementation is in progress 'exception-handling.wast', 'translate-eh-old-to-new.wast', diff --git a/scripts/gen-s-parser.py b/scripts/gen-s-parser.py index b2cac2b89..3f632c004 100755 --- a/scripts/gen-s-parser.py +++ b/scripts/gen-s-parser.py @@ -570,6 +570,7 @@ instructions = [ ("cont.new", "makeContNew(s)"), ("cont.bind", "makeContBind(s)"), ("resume", "makeResume(s)"), + ("suspend", "makeSuspend(s)"), # GC ("i31.new", "makeRefI31(s)"), # deprecated ("ref.i31", "makeRefI31(s)"), |