1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-24 12:20:20 +02:00

Lower default JIT threshold as JIT is cheaper now

* libguile/jit.c (default_jit_threshold): Lower from 50000 to 1000.
This commit is contained in:
Andy Wingo 2019-04-25 18:41:03 +02:00
parent e9a372b020
commit 4088915a7e

View file

@ -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 /* Threshold for when to JIT-compile a function. Set from the
GUILE_JIT_THRESHOLD environment variable. */ GUILE_JIT_THRESHOLD environment variable. */