diff options
| author | gingerBill <bill@gingerbill.org> | 2024-06-13 23:05:35 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-06-13 23:05:35 +0100 |
| commit | 7bf12cae9525190d57cdcda2de0a9c4d2e0de0a7 (patch) | |
| tree | 0a88bce985c92eacd38be4049a2f01f77114b5bb /src/tilde_proc.cpp | |
| parent | e66d71e9cf1389b0cb04d07452d99115357b350f (diff) | |
Update tildeupdate-tilde
Diffstat (limited to 'src/tilde_proc.cpp')
| -rw-r--r-- | src/tilde_proc.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tilde_proc.cpp b/src/tilde_proc.cpp index 542ed794e..e0a2c5d71 100644 --- a/src/tilde_proc.cpp +++ b/src/tilde_proc.cpp @@ -1,5 +1,5 @@ #ifndef TILDE_DO_CODEGEN -#define TILDE_DO_CODEGEN 0 +#define TILDE_DO_CODEGEN 1 #endif gb_internal TB_FunctionPrototype *cg_procedure_type_as_prototype(cgModule *m, Type *type) { @@ -388,9 +388,11 @@ gb_internal WORKER_TASK_PROC(cg_procedure_compile_worker_proc) { } #if TILDE_DO_CODEGEN + // gb_printf_err("[START] %.*s\n", LIT(p->name)); bool emit_asm = false; TB_FunctionOutput *output = tb_codegen(p->func, cg_worklist(), cg_arena(), &feature_set, emit_asm); gb_unused(output); + // gb_printf_err("[END] %.*s\n", LIT(p->name)); #endif // tb_print(p->func, cg_arena()); |