mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-08 05:27:33 +02:00
Rename param to "cps?"
This commit is contained in:
parent
9f26868ef0
commit
2da2317a91
1 changed files with 3 additions and 3 deletions
|
@ -864,9 +864,9 @@
|
|||
|
||||
(c-code/vars "" (list ""))))
|
||||
|
||||
(define (c-compile-raw-global-lambda exp append-preamble cont trace . inline?)
|
||||
(define (c-compile-raw-global-lambda exp append-preamble cont trace . cps?)
|
||||
(let* ((precompiled-sym
|
||||
(if (equal? inline? '(#t))
|
||||
(if (equal? cps? '(#f))
|
||||
'precompiled-inline-lambda
|
||||
'precompiled-lambda))
|
||||
(lambda-data
|
||||
|
@ -900,7 +900,7 @@
|
|||
append-preamble
|
||||
cont
|
||||
trace
|
||||
#t)))) ;; Inline this one
|
||||
#f)))) ;; Inline this one; CPS will not be used
|
||||
;; Add this define-c
|
||||
(add-global
|
||||
(define->var exp)
|
||||
|
|
Loading…
Add table
Reference in a new issue