mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 11:50:28 +02:00
Remove last use of SCM vm in VM
* libguile/control.h: * libguile/control.c (reify_partial_continuation, scm_c_abort): Take struct scm_vm *vp as an arg. * libguile/dynstack.h: Remove control.h include. * libguile/vm.c (vm_abort): Take struct scm_vm *vp as an arg. * libguile/vm-engine.c (abort): Adapt to vm_abort change.
This commit is contained in:
parent
44ece39907
commit
b44f5451f8
5 changed files with 27 additions and 28 deletions
|
@ -1043,7 +1043,7 @@ VM_NAME (SCM vm, SCM program, SCM *argv, size_t nargs_)
|
|||
it continues with the next instruction. */
|
||||
ip++;
|
||||
SYNC_IP ();
|
||||
vm_abort (vm, LOCAL_REF (1), nlocals - 2, LOCAL_ADDRESS (2),
|
||||
vm_abort (vp, LOCAL_REF (1), nlocals - 2, LOCAL_ADDRESS (2),
|
||||
SCM_EOL, LOCAL_ADDRESS (0), ®isters);
|
||||
|
||||
/* vm_abort should not return */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue