guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] 01/01: Fix the jitless fix


From: Andy Wingo
Subject: [Guile-commits] 01/01: Fix the jitless fix
Date: Mon, 19 Aug 2019 10:44:19 -0400 (EDT)

wingo pushed a commit to branch master
in repository guile.

commit 9e3a5c9a10d4202dabab0c93fb75d7e07201bb24
Author: Andy Wingo <address@hidden>
Date:   Mon Aug 19 16:43:43 2019 +0200

    Fix the jitless fix
    
    * libguile/vm.c (capture_continuation): Use #if, not #ifdef, to test the
      condition.
---
 libguile/vm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libguile/vm.c b/libguile/vm.c
index 398a5f4..1df1835 100644
--- a/libguile/vm.c
+++ b/libguile/vm.c
@@ -1157,7 +1157,7 @@ capture_continuation (scm_thread *thread)
 {
   struct scm_vm *vp = &thread->vm;
   void *mra = SCM_FRAME_MACHINE_RETURN_ADDRESS (vp->fp);
-#ifdef ENABLE_JIT
+#if ENABLE_JIT
   if (mra == scm_jit_return_to_interpreter_trampoline)
     mra = NULL;
 #endif



reply via email to

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