diff options
author | Andy Wingo <wingo@pobox.com> | 2018-08-29 21:44:38 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2018-08-29 21:44:38 +0200 |
commit | f32d17d386d0eb9f4142c44b93e191d7b3896ea5 (patch) | |
tree | a22bb6980164a3c6ba2a7380601144d024d132cc /libguile/continuations.c | |
parent | 15314fdc07216df883f5735243801e36be8011c6 (diff) | |
download | guile-f32d17d386d0eb9f4142c44b93e191d7b3896ea5.tar.gz |
Fix jit function data for goto_continuation_code
* libguile/continuations.c (goto_continuation_code): Fix offset of end
of code.
Diffstat (limited to 'libguile/continuations.c')
-rw-r--r-- | libguile/continuations.c | 2 |
1 files changed, 1 insertions, 1 deletions
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), |