mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-15 08:10:17 +02:00
Rename $closure to $const-fun
* module/language/cps.scm ($const-fun): Rename from $closure, as we always use this now with nfree == 0. * module/language/cps/closure-conversion.scm: * module/language/cps/compile-bytecode.scm: * module/language/cps/contification.scm: * module/language/cps/cse.scm: * module/language/cps/dce.scm: * module/language/cps/devirtualize-integers.scm: * module/language/cps/effects-analysis.scm: * module/language/cps/licm.scm: * module/language/cps/peel-loops.scm: * module/language/cps/renumber.scm: * module/language/cps/rotate-loops.scm: * module/language/cps/simplify.scm: * module/language/cps/slot-allocation.scm: * module/language/cps/specialize-numbers.scm: * module/language/cps/types.scm: * module/language/cps/utils.scm: * module/language/cps/verify.scm: Adapt users.
This commit is contained in:
parent
4e8d27f0d1
commit
39729e8448
18 changed files with 36 additions and 40 deletions
|
@ -144,7 +144,7 @@
|
|||
(maybe-mov dst (slot arg)))
|
||||
(($ $const exp)
|
||||
(emit-load-constant asm (from-sp dst) exp))
|
||||
(($ $closure k 0)
|
||||
(($ $const-fun k)
|
||||
(emit-load-static-procedure asm (from-sp dst) k))
|
||||
(($ $code k)
|
||||
(emit-load-label asm (from-sp dst) k))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue