mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
YJIT: reduce default --yjit-exec-mem-size
to 128MiB instead of 256 (#6649)
Reduce default --yjit-exec-mem-size to 128MiB instead of 256
This commit is contained in:
parent
c3de08cb24
commit
5e6633fcf9
Notes:
git
2022-10-31 18:29:41 +00:00
Merged-By: maximecb <maximecb@ruby-lang.org>
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ pub struct Options {
|
|||
|
||||
// Initialize the options to default values
|
||||
pub static mut OPTIONS: Options = Options {
|
||||
exec_mem_size: 256 * 1024 * 1024,
|
||||
exec_mem_size: 128 * 1024 * 1024,
|
||||
code_page_size: 16 * 1024,
|
||||
call_threshold: 10,
|
||||
greedy_versioning: false,
|
||||
|
|
Loading…
Reference in a new issue