mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-21 22:59:16 +02:00
Issue #377 - Compile void type
This commit is contained in:
parent
d312b0598c
commit
6e607f4788
1 changed files with 2 additions and 0 deletions
|
@ -625,6 +625,8 @@
|
||||||
(cond
|
(cond
|
||||||
((null? exp)
|
((null? exp)
|
||||||
(c:code "NULL"))
|
(c:code "NULL"))
|
||||||
|
((eq? (void) exp) ;; Poor man's (void?)
|
||||||
|
(c:code "Cyc_VOID"))
|
||||||
((pair? exp)
|
((pair? exp)
|
||||||
(c-compile-scalars exp use-alloca immutable))
|
(c-compile-scalars exp use-alloca immutable))
|
||||||
((vector? exp)
|
((vector? exp)
|
||||||
|
|
Loading…
Add table
Reference in a new issue