mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-12 15:27:36 +02:00
Handle define-c inline globals
This commit is contained in:
parent
2af740f763
commit
470ea62e9d
1 changed files with 3 additions and 1 deletions
|
@ -790,7 +790,9 @@
|
||||||
(lambda (e)
|
(lambda (e)
|
||||||
(if (or (define? e)
|
(if (or (define? e)
|
||||||
(define-c? e))
|
(define-c? e))
|
||||||
(set! globals (cons (define->var e) globals))))
|
(set! globals (cons (define->var e) globals)))
|
||||||
|
(if (define-c-inline? e)
|
||||||
|
(set! globals (cons (define-c->inline-var e) globals))))
|
||||||
exp)
|
exp)
|
||||||
globals))
|
globals))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue