guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 01/01: Lower default JIT threshold as JIT is cheaper now


From: Andy Wingo
Subject: [Guile-commits] 01/01: Lower default JIT threshold as JIT is cheaper now
Date: Thu, 25 Apr 2019 12:42:49 -0400 (EDT)

wingo pushed a commit to branch lightening
in repository guile.

commit 4088915a7ee9c516978522f5cd0f862e6c12bc3a
Author: Andy Wingo <address@hidden>
Date:   Thu Apr 25 18:41:03 2019 +0200

    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 d1aa4fc..2e273bcb 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.  */



reply via email to

[Prev in Thread] Current Thread [Next in Thread]