mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-16 17:27:33 +02:00
Fix parens
This commit is contained in:
parent
a06d2793c8
commit
8fa6513571
1 changed files with 2 additions and 1 deletions
|
@ -1182,9 +1182,10 @@
|
||||||
args)))
|
args)))
|
||||||
exps))
|
exps))
|
||||||
((equal? 'Cyc-local-set! fun)
|
((equal? 'Cyc-local-set! fun)
|
||||||
|
;:(trace:error `(JAE DEBUG Cyc-local-set ,exp))
|
||||||
(let ((val-exp (c-compile-exp (caddr exp) append-preamble cont ast-id trace cps?)))
|
(let ((val-exp (c-compile-exp (caddr exp) append-preamble cont ast-id trace cps?)))
|
||||||
(c-code/vars
|
(c-code/vars
|
||||||
(string-append (mangle (cadr exp) " = " (c:body val-exp) ";"))
|
(string-append (mangle (cadr exp)) " = " (c:body val-exp) ";")
|
||||||
(c:allocs val-exp)))
|
(c:allocs val-exp)))
|
||||||
;(c-code (string-append (mangle (cadr exp)) " = " (mangle (caddr exp)) ";"))
|
;(c-code (string-append (mangle (cadr exp)) " = " (mangle (caddr exp)) ";"))
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue