mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +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:
parent
15314fdc07
commit
f32d17d386
1 changed files with 1 additions and 1 deletions
|
@ -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),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue