refactor: clean up ir print writer

This commit is contained in:
Brett Broadhurst 2026-03-18 01:37:42 -06:00
parent 20292bcc6a
commit 517eae1481
Failed to generate hash of commit
3 changed files with 319 additions and 384 deletions

View file

@ -572,7 +572,7 @@ pub fn loadFromString(
if (options.dump_writer) |w| {
try w.writeAll("=== Semantic IR ===\n");
try sem_ir.dumpInfo(w);
try sem_ir.render(gpa, w);
try sem_ir.render(w);
}
}