summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2019-04-25 18:41:03 +0200
committerAndy Wingo <wingo@pobox.com>2019-04-25 18:41:03 +0200
commit4088915a7ee9c516978522f5cd0f862e6c12bc3a (patch)
tree9ab699815d88afd87a719cda4ae166a0cf5edd10
parente9a372b0201de0d0f1d6fdcb644acbbf87df2b90 (diff)
downloadguile-4088915a7ee9c516978522f5cd0f862e6c12bc3a.tar.gz
Lower default JIT threshold as JIT is cheaper now
* libguile/jit.c (default_jit_threshold): Lower from 50000 to 1000.
-rw-r--r--libguile/jit.c2
1 files changed, 1 insertions, 1 deletions
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. */