EnterBlock

This commit is contained in:
2026-01-24 11:30:55 +08:00
parent 100a9d3546
commit c1f7a5eabe
2 changed files with 6 additions and 1 deletions

View File

@ -25,5 +25,10 @@ namespace ARMeilleure.CodeGen.Loong64
Assembler = new Assembler(_stream);
}
public void EnterBlock(BasicBlock block)
{
}
}
}

View File

@ -95,7 +95,7 @@ namespace ARMeilleure.CodeGen.Loong64
bool relocatable = (cctx.Options & CompilerOptions.Relocatable) != 0;
CodeGenContext context = new(allocResult, maxCallArgs, relocatable);
CodeGenContext context = new(allocResult);
UnwindInfo unwindInfo = WritePrologue(context);