aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-10-29 20:12:19 +0200
committerBad Diode <bd@badd10de.dev>2021-10-29 20:12:19 +0200
commit95709acb7f166b21f562ef3fcf8ba7cb5890d28a (patch)
tree5a3629189218d2c123228831348eae694b2a3a8a /src/main.c
parent5ed73b695e6b463149ab0c9ae3eccb26a4ec5807 (diff)
downloadbdl-95709acb7f166b21f562ef3fcf8ba7cb5890d28a.tar.gz
bdl-95709acb7f166b21f562ef3fcf8ba7cb5890d28a.zip
Deduplicate string/symbols text for fast equality checks
Diffstat (limited to 'src/main.c')
-rwxr-xr-xsrc/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index c734916..d4fa2c2 100755
--- a/src/main.c
+++ b/src/main.c
@@ -32,10 +32,10 @@ process_source(const StringView *source, const char *file_name) {
32 } 32 }
33 33
34 // Parser. 34 // Parser.
35 Root *roots = parse(tokens, &errors); 35 ParserResults pr = parse(tokens, &errors);
36 if (errors.n != 0) { 36 if (errors.n != 0) {
37 report_errors(&errors, file_name); 37 report_errors(&errors, file_name);
38 free_roots(roots); 38 free_parser_results(&pr);
39 array_free(tokens); 39 array_free(tokens);
40 exit(EXIT_FAILURE); 40 exit(EXIT_FAILURE);
41 } 41 }
@@ -46,7 +46,7 @@ process_source(const StringView *source, const char *file_name) {
46 // TODO: Compilation. 46 // TODO: Compilation.
47 47
48 // Free resources. 48 // Free resources.
49 free_roots(roots); 49 free_parser_results(&pr);
50} 50}
51 51
52void 52void