mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-13 15:57:36 +02:00
Properly reference closures
This commit is contained in:
parent
7e6ad07d9f
commit
6f47046be0
1 changed files with 4 additions and 1 deletions
|
@ -1518,7 +1518,10 @@
|
||||||
(create-object))
|
(create-object))
|
||||||
(else
|
(else
|
||||||
(c-code/vars
|
(c-code/vars
|
||||||
(string-append "&" cv-name)
|
(if (and use-alloca?
|
||||||
|
(> (length free-vars) 0))
|
||||||
|
cv-name
|
||||||
|
(string-append "&" cv-name))
|
||||||
(list
|
(list
|
||||||
(if (> (length free-vars) 0)
|
(if (> (length free-vars) 0)
|
||||||
(create-nclosure)
|
(create-nclosure)
|
||||||
|
|
Loading…
Add table
Reference in a new issue