diff options
| author | gingerBill <bill@gingerbill.org> | 2023-07-22 10:16:28 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-07-22 10:16:28 +0100 |
| commit | eec3b3009f0005090ddd5a7901e5f3c38cf31ce1 (patch) | |
| tree | 696b4ddfd242fcbb3f7655dc7272a2197ac785fa /src/tilde_proc.cpp | |
| parent | 4654b41c3e6a01118e28e6297b2de97bd0a8cd42 (diff) | |
Begin work on builtin procedures
Diffstat (limited to 'src/tilde_proc.cpp')
| -rw-r--r-- | src/tilde_proc.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tilde_proc.cpp b/src/tilde_proc.cpp index 0deb4af45..8016e4dba 100644 --- a/src/tilde_proc.cpp +++ b/src/tilde_proc.cpp @@ -607,7 +607,8 @@ gb_internal cgValue cg_build_call_expr_internal(cgProcedure *p, Ast *expr) { } return {}; } - GB_PANIC("TODO(bill): builtin procs %d %.*s", id, LIT(builtin_procs[id].name)); + + return cg_build_builtin(p, id, expr); } // NOTE(bill): Regular call |