We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68ea908 commit 1527ce0Copy full SHA for 1527ce0
1 file changed
scripts/fuzz_opt.py
@@ -688,6 +688,10 @@ def get_v8_extra_flags():
688
if random.random() < 0.5:
689
flags += ['--wasm-assert-types']
690
691
+ # Some other options make sense to use sometimes.
692
+ if random.random() < 0.5:
693
+ flags += ['--no-wasm-generic-wrapper']
694
+
695
return flags
696
697
@@ -862,8 +866,6 @@ class D8Turboshaft(D8):
862
866
863
867
def run(self, wasm):
864
868
flags = ['--no-liftoff']
865
- if random.random() < 0.5:
- flags += ['--no-wasm-generic-wrapper']
869
return super().run(wasm, extra_d8_flags=flags)
870
871
class Wasm2C:
0 commit comments