This commit is contained in:
agra
2026-03-03 16:18:58 +02:00
parent 23f444033a
commit 0336f361c7
7 changed files with 181 additions and 33 deletions

View File

@@ -367,7 +367,7 @@ fn dumpSxIR(allocator: std.mem.Allocator, io: std.Io, input_path: []const u8) !v
comp.parse() catch { comp.renderErrors(); return error.CompileError; };
comp.resolveImports() catch { comp.renderErrors(); return error.CompileError; };
var ir_module = comp.lowerToIR();
var ir_module = comp.lowerToIR() catch { comp.renderErrors(); return error.CompileError; };
defer ir_module.deinit();
var aw = std.Io.Writer.Allocating.init(allocator);