summaryrefslogtreecommitdiff
path: root/yjit
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2022-12-13 08:00:22 -0800
committerGitHub <noreply@github.com>2022-12-13 11:00:22 -0500
commita66a69865d444509710253d3210a1e72bcd040f9 (patch)
treef8e1c0f01a90485b174a809d13a85b680009055a /yjit
parent99d0a257af54aa819c6ced5f1ff8ff37e3d5342b (diff)
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 <XrXr@users.noreply.github.com>
Notes
Notes: Merged-By: maximecb <maximecb@ruby-lang.org>
Diffstat (limited to 'yjit')
-rw-r--r--yjit/src/options.rs2
1 files changed, 1 insertions, 1 deletions
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,