aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 0fbabdb..72aac77 100644
--- a/src/main.c
+++ b/src/main.c
@@ -62,6 +62,10 @@ process_source(const StringView *source, const char *file_name) {
62 viz_symtables(parse_tree->scopes); 62 viz_symtables(parse_tree->scopes);
63 return; 63 return;
64 } 64 }
65
66 ProgramBASM *program = generate_basm(parse_tree);
67 check_errors(file_name);
68 viz_basm(program);
65} 69}
66 70
67void 71void