mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15: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)
|
||||
(let ((exps (foldr
|
||||
(lambda (expr acc)
|
||||
(c:append
|
||||
acc
|
||||
(c-compile-exp expr append-preamble cont trace cps?)))
|
||||
;(c:append
|
||||
(let ((cp1 (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 "")
|
||||
args)))
|
||||
exps))
|
||||
|
|
Loading…
Add table
Reference in a new issue