Aria

A low-level systems programming language
git clone git://git.m21c.me/Aria.git
Log | Files | Refs | README | LICENSE

commit 60ab6c6b7933a0c7ec3606bdb51075c1eb76471d
parent 76dfeefab0f439941778a04ab7ce4fb4df0a2995
Author: m21c <ho*******@gmail.com>
Date:   Mon, 15 Jun 2026 22:24:09 +0200

fix: working on compiler mem management

Diffstat:
Mcompiler.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compiler.c b/compiler.c @@ -5343,7 +5343,7 @@ int gisttop; static Block * makeblock(BlockKind kind, Env *env) { - Block *block = simpleunpool(blockbuf, blocktop); + Block *block = unpool(blockbuf, blocktop); block->kind = kind; block->env = env;