uns_lisp: add first part of CPS transformer

This commit is contained in:
Peter McGoron 2024-07-14 02:12:09 -04:00
parent 7731d1136b
commit 73a9e320a5
2 changed files with 886 additions and 101 deletions

File diff suppressed because it is too large Load Diff

View File

@ -48,6 +48,7 @@ static void after_gc(Uns_GC gc, struct uns_cheney_c89_statistics *stats)
Uns_GC uns_lisp_gc_init(void)
{
Uns_GC gc = malloc(uns_gc_size);
uns_gc_zero(gc);
if (!uns_cheney_c89_init(gc, 512)) {
fprintf(stderr, "Error initializing GC\n");
exit(1);