mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-12 23:00:22 +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" (variable-ref v))
|
||||||
(list "`~s'" v)))))
|
(list "`~s'" v)))))
|
||||||
((mv-call)
|
((mv-call)
|
||||||
(list "MV -> ~A" (+ end-addr (apply make-int16 args))))
|
(list "MV -> ~A" (+ end-addr (apply make-int16 (cdr args)))))
|
||||||
(else
|
(else
|
||||||
(and=> (code->object code)
|
(and=> (code->object code)
|
||||||
(lambda (obj) (list "~s" obj)))))))
|
(lambda (obj) (list "~s" obj)))))))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue