mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-25 13:05:05 +02:00
WIP
This commit is contained in:
parent
7bad122821
commit
8ba1954ac3
1 changed files with 6 additions and 3 deletions
|
@ -828,9 +828,12 @@
|
||||||
((equal? 'Cyc-seq fun)
|
((equal? 'Cyc-seq fun)
|
||||||
(let ((exps (foldr
|
(let ((exps (foldr
|
||||||
(lambda (expr acc)
|
(lambda (expr acc)
|
||||||
(c:append
|
;(c:append
|
||||||
acc
|
(let ((cp1 (c-compile-exp expr append-preamble cont trace cps?))
|
||||||
(c-compile-exp expr append-preamble cont trace cps?)))
|
(cp2 acc))
|
||||||
|
(c-code/vars
|
||||||
|
(string-append (c:body cp1) ";" (c:body cp2))
|
||||||
|
(append (c:allocs cp1) (c:allocs cp2)))))
|
||||||
(c-code "")
|
(c-code "")
|
||||||
args)))
|
args)))
|
||||||
exps))
|
exps))
|
||||||
|
|
Loading…
Add table
Reference in a new issue