This is the mail archive of the kawa@sources.redhat.com mailing list for the Kawa project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
But all this also raises an important question. Can different calling conventions be used for different expressions in the same module? Suppose one writes:
(module-compile-options call-convention: 'full-tailcalls)
(define (f x) (with-compile-options call-convention: 'cps (g x)))
(define (g y) ...)
(with-compile-options call-convention: 'no-full-tailcalls
(define (f x)
(g x)))(define (g y) ...)
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |