This commit is contained in:
Justin Ethier 2017-07-07 18:44:13 -04:00
parent 7bad122821
commit 8ba1954ac3

View file

@ -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))