1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 11:50:28 +02:00

Fix jit function data for goto_continuation_code

* libguile/continuations.c (goto_continuation_code): Fix offset of end
  of code.
This commit is contained in:
Andy Wingo 2018-08-29 21:44:38 +02:00
parent 15314fdc07
commit f32d17d386

View file

@ -87,7 +87,7 @@ struct goto_continuation_code goto_continuation_code = {
/* mcode = */ 0, /* mcode = */ 0,
/* counter = */ 0, /* counter = */ 0,
/* start = */ sizeof (struct scm_jit_function_data), /* 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), SCM_PACK_OP_24 (instrument_entry, 0),