mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-14 15:40:19 +02:00
Internal RTL excision in vm.c
* libguile/vm.c (vm_boot_continuation, vm_boot_continuation_code): Rename from rtl_boot_continuation[_code]. (scm_bootstrap_vm): * libguile/vm-engine.c (rtl_vm_engine): Adapt.
This commit is contained in:
parent
827c2c26fc
commit
ef6b7f718a
2 changed files with 7 additions and 7 deletions
|
@ -470,9 +470,9 @@ RTL_VM_NAME (SCM vm, SCM program, SCM *argv, size_t nargs_)
|
|||
continuation. */
|
||||
base[0] = SCM_PACK (fp); /* dynamic link */
|
||||
base[1] = SCM_PACK (ip); /* ra */
|
||||
base[2] = rtl_boot_continuation;
|
||||
base[2] = vm_boot_continuation;
|
||||
fp = &base[2];
|
||||
ip = (scm_t_uint32 *) rtl_boot_continuation_code;
|
||||
ip = (scm_t_uint32 *) vm_boot_continuation_code;
|
||||
|
||||
/* MV-call frame, function & arguments */
|
||||
base[3] = SCM_PACK (fp); /* dynamic link */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue