continued work on new register allocator implementation.

next commit will have it integrated if it works
This commit is contained in:
2026-02-14 20:23:20 +00:00
parent 7b18922cc7
commit 4ed5da259e
5 changed files with 283 additions and 261 deletions
-1
View File
@@ -4,7 +4,6 @@ mod codegen;
mod instruction;
mod registers;
mod scope;
mod variable;
pub fn generate_code(ast: &Program) -> Result<String, CompilerError> {
let mut codegen = codegen::CodeGenerator::new(ast.clone());