From 4088915a7ee9c516978522f5cd0f862e6c12bc3a Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Thu, 25 Apr 2019 18:41:03 +0200 Subject: [PATCH] Lower default JIT threshold as JIT is cheaper now * libguile/jit.c (default_jit_threshold): Lower from 50000 to 1000. --- libguile/jit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/jit.c b/libguile/jit.c index d1aa4fc99..2e273bcbc 100644 --- a/libguile/jit.c +++ b/libguile/jit.c @@ -124,7 +124,7 @@ -static const uint32_t default_jit_threshold = 50000; +static const uint32_t default_jit_threshold = 1000; /* Threshold for when to JIT-compile a function. Set from the GUILE_JIT_THRESHOLD environment variable. */