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:
parent
8f64368ee5
commit
1a38597553
1 changed files with 1 additions and 1 deletions
|
@ -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)))))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue