diff options
| author | gingerBill <bill@gingerbill.org> | 2023-07-24 15:18:20 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-07-24 15:18:20 +0100 |
| commit | cf77a0e2b4b0cfcc03ae3c160a20b17944f7765c (patch) | |
| tree | 9baf82c7ef4ce409aebf686748cab8de2e01da39 /src | |
| parent | e2593a68838a038dce55719ca3e4e8604dbc43d3 (diff) | |
Update Tilde to fix reg alloc bug
Diffstat (limited to 'src')
| -rw-r--r-- | src/tilde.cpp | 2 | ||||
| -rw-r--r-- | src/tilde/tb.lib | bin | 4168796 -> 4164088 bytes | |||
| -rw-r--r-- | src/tilde_proc.cpp | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/src/tilde.cpp b/src/tilde.cpp index e765a5c72..89075da75 100644 --- a/src/tilde.cpp +++ b/src/tilde.cpp @@ -799,7 +799,7 @@ gb_internal bool cg_generate_code(Checker *c, LinkerData *linker_data) { TB_DebugFormat debug_format = TB_DEBUGFMT_NONE; - if (build_context.ODIN_DEBUG || true) { + if (build_context.ODIN_DEBUG) { switch (build_context.metrics.os) { case TargetOs_windows: debug_format = TB_DEBUGFMT_CODEVIEW; diff --git a/src/tilde/tb.lib b/src/tilde/tb.lib Binary files differindex 4e97a0306..7ec145bda 100644 --- a/src/tilde/tb.lib +++ b/src/tilde/tb.lib diff --git a/src/tilde_proc.cpp b/src/tilde_proc.cpp index fb66e6adb..b3c81a7d5 100644 --- a/src/tilde_proc.cpp +++ b/src/tilde_proc.cpp @@ -350,7 +350,7 @@ gb_internal WORKER_TASK_PROC(cg_procedure_compile_worker_proc) { bool emit_asm = false; if ( - string_starts_with(p->name, str_lit("runtime@_os_write")) || + // string_starts_with(p->name, str_lit("runtime@_os_write")) || false ) { emit_asm = true; |