From f32d17d386d0eb9f4142c44b93e191d7b3896ea5 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Wed, 29 Aug 2018 21:44:38 +0200 Subject: [PATCH] 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 479266e99..3f86c6bd4 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),