From a66a69865d444509710253d3210a1e72bcd040f9 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Tue, 13 Dec 2022 08:00:22 -0800 Subject: YJIT: Change the default mem size to 64MiB (#6912) * YJIT: Change the default mem size to 64MiB * Also update ruby --help Co-authored-by: Alan Wu --- yjit/src/options.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'yjit') diff --git a/yjit/src/options.rs b/yjit/src/options.rs index d734bcc40b..e720c33b0b 100644 --- a/yjit/src/options.rs +++ b/yjit/src/options.rs @@ -49,7 +49,7 @@ pub struct Options { // Initialize the options to default values pub static mut OPTIONS: Options = Options { - exec_mem_size: 128 * 1024 * 1024, + exec_mem_size: 64 * 1024 * 1024, call_threshold: 30, greedy_versioning: false, no_type_prop: false, -- cgit v1.2.3