mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-17 09:10:22 +02:00
$throw is a new kind of CPS term
* module/language/cps.scm ($throw): New term type that doesn't have a continuation. Adapt all callers. Remove now-unneeded "prune-bailouts" pass.
This commit is contained in:
parent
de5c81b1d1
commit
ad55ee83c3
26 changed files with 145 additions and 148 deletions
|
@ -94,7 +94,9 @@ references."
|
|||
(($ $branch kf kt src op param args)
|
||||
(add-uses args uses))
|
||||
(($ $prompt k kh src escape? tag)
|
||||
(add-use tag uses)))))
|
||||
(add-use tag uses))
|
||||
(($ $throw src op param args)
|
||||
(add-uses args uses)))))
|
||||
(($ $kfun src meta self)
|
||||
(values (add-def self defs) uses))
|
||||
(_ (values defs uses))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue