mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-10 22:10:21 +02:00
Fix RTL linking of procedure properties.
* module/system/vm/assembler.scm (link-procprops): Fix procedure property embedding in bytecode.
This commit is contained in:
parent
d81658a7ec
commit
463469cce7
1 changed files with 1 additions and 1 deletions
|
@ -1579,7 +1579,7 @@ it will be added to the GC roots at runtime."
|
|||
(filter-map (lambda (meta)
|
||||
(let ((props (props-without-name-or-docstring meta)))
|
||||
(and (pair? props)
|
||||
(cons (meta-low-pc meta) props))))
|
||||
(cons (* 4 (meta-low-pc meta)) props))))
|
||||
(reverse (asm-meta asm))))
|
||||
(let* ((endianness (asm-endianness asm))
|
||||
(procprops (find-procprops))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue