blob: 8b28746dab75dd3f538374adefa512c562068af4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
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 {
}
|