1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

Fix bytecode disassembler.

* module/language/assembly/decompile-bytecode.scm (decode-load-program):
  Add missing argument to `ensure-label'.
This commit is contained in:
Ludovic Courtès 2009-10-22 22:29:22 +02:00
parent 9c2224f2a6
commit 3c365b8efc

View file

@ -89,7 +89,7 @@
((,br ,rel1 ,rel2 ,rel3) (guard (br-instruction? br))
(lp (cons `(,br ,(ensure-label rel1 rel2 rel3)) out)))
((mv-call ,n ,rel1 ,rel2 ,rel3)
(lp (cons `(mv-call ,n ,(ensure-label rel1 rel2)) out)))
(lp (cons `(mv-call ,n ,(ensure-label rel1 rel2 rel3)) out)))
(else
(lp (cons exp out))))))))))