mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 15:18:49 +00:00
Update Tilde to fix reg alloc bug
This commit is contained in:
+1
-1
@@ -799,7 +799,7 @@ gb_internal bool cg_generate_code(Checker *c, LinkerData *linker_data) {
|
|||||||
|
|
||||||
|
|
||||||
TB_DebugFormat debug_format = TB_DEBUGFMT_NONE;
|
TB_DebugFormat debug_format = TB_DEBUGFMT_NONE;
|
||||||
if (build_context.ODIN_DEBUG || true) {
|
if (build_context.ODIN_DEBUG) {
|
||||||
switch (build_context.metrics.os) {
|
switch (build_context.metrics.os) {
|
||||||
case TargetOs_windows:
|
case TargetOs_windows:
|
||||||
debug_format = TB_DEBUGFMT_CODEVIEW;
|
debug_format = TB_DEBUGFMT_CODEVIEW;
|
||||||
|
|||||||
Binary file not shown.
+1
-1
@@ -350,7 +350,7 @@ gb_internal WORKER_TASK_PROC(cg_procedure_compile_worker_proc) {
|
|||||||
bool emit_asm = false;
|
bool emit_asm = false;
|
||||||
|
|
||||||
if (
|
if (
|
||||||
string_starts_with(p->name, str_lit("runtime@_os_write")) ||
|
// string_starts_with(p->name, str_lit("runtime@_os_write")) ||
|
||||||
false
|
false
|
||||||
) {
|
) {
|
||||||
emit_asm = true;
|
emit_asm = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user