issue 06
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user