Issue #273 - Avoid compiler warning

This commit is contained in:
Justin Ethier 2021-07-19 19:45:34 -07:00
parent 7b96ff82af
commit a3e0d51021

View file

@ -1001,10 +1001,12 @@
;;(trace:info `(loop ,args ,(cadr args) ,cgen-lis ,parent-args))
(c:code
(string-append
cgen-allocs ; (c:allocs->str (c:allocs cgen))
cgen-allocs
"\n"
cgen-body ; TODO: (c:body cgen) ; TODO: re-assign function args, longer-term using temp variables
cgen-body
"\n"
;; Avoid unused var warning from C compiler
(mangle (cadr args)) " = " (mangle (cadr args)) ";"
"continue;"))))
((eq? 'Cyc-foreign-code fun)