import "ir.hff"; extern fn mkirctx(alloc *Allocator) *IRCtx { let ctx *IRCtx = anew(alloc, IRCtx); ctx.alloc = alloc; return ctx; } extern fn ir_free(IR *IRCtx) void { }