From 39cc11866bf7f7f834b903719fb181e4c7f49a68 Mon Sep 17 00:00:00 2001 From: Afonso Bordado Date: Fri, 17 Feb 2023 19:59:54 +0000 Subject: [PATCH] fuzzgen: Increase stack space --- cranelift/fuzzgen/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cranelift/fuzzgen/src/config.rs b/cranelift/fuzzgen/src/config.rs index 971f6d27e81a..79ae5f82c78d 100644 --- a/cranelift/fuzzgen/src/config.rs +++ b/cranelift/fuzzgen/src/config.rs @@ -81,7 +81,7 @@ impl Default for Config { switch_max_range_size: 2..=32, funcrefs_per_function: 0..=8, static_stack_slots_per_function: 0..=8, - static_stack_slot_size: 0..=128, + static_stack_slot_size: 0..=8192, // We need the mix of sizes that allows us to: // * not generates any stack probes // * generate unrolled stack probes