Update Tilde

This commit is contained in:
gingerBill
2023-07-24 10:27:55 +01:00
parent 2f9c5d2d0b
commit 241a939c29
8 changed files with 35 additions and 23 deletions
+6 -3
View File
@@ -334,8 +334,8 @@ gb_internal void cg_procedure_end(cgProcedure *p) {
}
bool emit_asm = false;
if (string_starts_with(p->name, str_lit("bug@main"))) {
// emit_asm = true;
if (string_starts_with(p->name, str_lit("bug@"))) {
emit_asm = true;
}
TB_FunctionOutput *output = tb_module_compile_function(p->module->mod, p->func, TB_ISEL_FAST, emit_asm);
@@ -357,7 +357,10 @@ gb_internal void cg_procedure_generate(cgProcedure *p) {
cg_build_stmt(p, p->body);
cg_procedure_end(p);
if (string_starts_with(p->name, str_lit("bug@main"))) { // IR Printing
if (
// string_starts_with(p->name, str_lit("bug@")) ||
false
) { // IR Printing
TB_Arena *arena = tb_default_arena();
defer (arena->free(arena));
TB_FuncOpt *opt = tb_funcopt_enter(p->func, arena);