1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 22:31:12 +02:00

fix mv-call disasm bug

* module/system/vm/disasm.scm (code-annotation): Fix bug with mv-call.
This commit is contained in:
Andy Wingo 2008-10-15 22:42:51 +02:00
parent 8f64368ee5
commit 1a38597553

View file

@ -163,7 +163,7 @@
(list "~s" (variable-ref v))
(list "`~s'" v)))))
((mv-call)
(list "MV -> ~A" (+ end-addr (apply make-int16 args))))
(list "MV -> ~A" (+ end-addr (apply make-int16 (cdr args)))))
(else
(and=> (code->object code)
(lambda (obj) (list "~s" obj)))))))