diff options
author | Andy Wingo <wingo@pobox.com> | 2019-04-25 18:41:03 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2019-04-25 18:41:03 +0200 |
commit | 4088915a7ee9c516978522f5cd0f862e6c12bc3a (patch) | |
tree | 9ab699815d88afd87a719cda4ae166a0cf5edd10 | |
parent | e9a372b0201de0d0f1d6fdcb644acbbf87df2b90 (diff) | |
download | guile-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.c | 2 |
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. */ |