summaryrefslogtreecommitdiff
path: root/yjit
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2022-12-02 08:32:49 -0800
committerGitHub <noreply@github.com>2022-12-02 11:32:49 -0500
commitfa77bcf7220a5515323a53a8320132418124f202 (patch)
tree3964c2a664c93a619f9ce56ce0dd3d8ffc8189e4 /yjit
parente558c374b7975f9923228cdf325f767eef97a725 (diff)
YJIT: Change the default --yjit-call-threshold to 30 (#6850)
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 645af0faac..268e141ed6 100644
--- a/yjit/src/options.rs
+++ b/yjit/src/options.rs
@@ -55,7 +55,7 @@ pub struct Options {
pub static mut OPTIONS: Options = Options {
exec_mem_size: 128 * 1024 * 1024,
code_page_size: 16 * 1024,
- call_threshold: 10,
+ call_threshold: 30,
greedy_versioning: false,
no_type_prop: false,
max_versions: 4,