Skip to content

Commit 5e6633f

Browse files
author
Maxime Chevalier-Boisvert
authored
YJIT: reduce default --yjit-exec-mem-size to 128MiB instead of 256 (ruby#6649)
Reduce default --yjit-exec-mem-size to 128MiB instead of 256
1 parent c3de08c commit 5e6633f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

yjit/src/options.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ pub struct Options {
5353

5454
// Initialize the options to default values
5555
pub static mut OPTIONS: Options = Options {
56-
exec_mem_size: 256 * 1024 * 1024,
56+
exec_mem_size: 128 * 1024 * 1024,
5757
code_page_size: 16 * 1024,
5858
call_threshold: 10,
5959
greedy_versioning: false,

0 commit comments

Comments
 (0)