guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] 01/03: Fix jit function data for goto_continuation_code


From: Andy Wingo
Subject: [Guile-commits] 01/03: Fix jit function data for goto_continuation_code
Date: Wed, 29 Aug 2018 16:30:10 -0400 (EDT)

wingo pushed a commit to branch lightning
in repository guile.

commit f32d17d386d0eb9f4142c44b93e191d7b3896ea5
Author: Andy Wingo <address@hidden>
Date:   Wed Aug 29 21:44:38 2018 +0200

    Fix jit function data for goto_continuation_code
    
    * libguile/continuations.c (goto_continuation_code): Fix offset of end
      of code.
---
 libguile/continuations.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libguile/continuations.c b/libguile/continuations.c
index 479266e..3f86c6b 100644
--- a/libguile/continuations.c
+++ b/libguile/continuations.c
@@ -87,7 +87,7 @@ struct goto_continuation_code goto_continuation_code = {
     /* mcode = */ 0,
     /* counter = */ 0,
     /* start = */ sizeof (struct scm_jit_function_data),
-    /* end = */ sizeof (struct goto_continuation_code)
+    /* end = */ sizeof (struct scm_jit_function_data) + 12
   },
   {
     SCM_PACK_OP_24 (instrument_entry, 0),



reply via email to

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