diff options
| author | 2022-08-29 23:01:37 +0200 | |
|---|---|---|
| committer | 2022-08-29 23:01:37 +0200 | |
| commit | 34313d801d38aa726d01b7f09690fb7a86ac47dd (patch) | |
| tree | ef891f88562c167e732dc7d7b9a8a656f92da6cd /src/ir.cff | |
| parent | 2f243de6ce9402f880677a07b832c0e56a7f688d (diff) | |
remove ir*.cff; make vararg only with primitive types
Diffstat (limited to 'src/ir.cff')
| -rw-r--r-- | src/ir.cff | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/ir.cff b/src/ir.cff deleted file mode 100644 index 8b28746..0000000 --- a/src/ir.cff +++ /dev/null @@ -1,10 +0,0 @@ -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 { -} |