mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-09 13:30:26 +02:00
Fix comments in cps/compile-bytecode
* module/language/cps/compile-bytecode.scm (compile-function): Fix unfinished comments.
This commit is contained in:
parent
86e86ec1c7
commit
39619988e4
1 changed files with 5 additions and 2 deletions
|
@ -642,10 +642,13 @@
|
|||
(when src
|
||||
(emit-source asm src))
|
||||
(emit-begin-program asm label meta)
|
||||
;; If the function has a $kargs as entry, handle
|
||||
(match (intmap-ref cps entry)
|
||||
(($ $kclause) #t) ;; Leave arity handling to the
|
||||
(($ $kclause)
|
||||
;; Leave arity handling to the dispatcher.
|
||||
#t)
|
||||
(($ $kargs names vars _)
|
||||
;; Otherwise the $kfun continues to the $kargs directly,
|
||||
;; without any arity checking, so we begin the arity here.
|
||||
(emit-begin-unchecked-arity asm (->bool self) names frame-size)
|
||||
(when self
|
||||
(emit-definition asm 'closure 0 'scm)))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue