1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

rtl vm: box-set! binds no values

* libguile/vm-engine.c (box-set!): Remove the OP_DST flag.
This commit is contained in:
Andy Wingo 2013-08-24 11:34:56 +02:00
parent 70a2043143
commit e063995db8

View file

@ -1823,7 +1823,7 @@ RTL_VM_NAME (SCM vm, SCM program, SCM *argv, size_t nargs_)
* *
* Set the contents of the variable at DST to SET. * Set the contents of the variable at DST to SET.
*/ */
VM_DEFINE_OP (42, box_set, "box-set!", OP1 (U8_U12_U12) | OP_DST) VM_DEFINE_OP (42, box_set, "box-set!", OP1 (U8_U12_U12))
{ {
scm_t_uint16 dst, src; scm_t_uint16 dst, src;
SCM var; SCM var;