1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

Unbound vars fixup

* module/language/tree-il/compile-cps.scm (%box-ref): Fix untested bug.
The peril of a compiler spanning modules...
This commit is contained in:
Andy Wingo 2023-11-23 12:37:20 +01:00
parent 5ef0ea30fa
commit 3b7c78cc83

View file

@ -515,7 +515,8 @@
($primcall 'box-ref #f (box))))))
(else
(with-cps cps
($continue k src ($primcall 'box-ref #f (box))))))))
(build-term
($continue k src ($primcall 'box-ref #f (box)))))))))
(define-primcall-converter %box-set!
(lambda (cps k src op param box val)