aboutsummaryrefslogtreecommitdiff
path: root/src/parser.c
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-10-07 00:51:40 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-25 14:36:46 +0200
commit111bd0c7cb4b446c4bfe192b1df82845de17c005 (patch)
treef8efde64837e03f13dfb2baae3160a98bda8913a /src/parser.c
parenta9a8cf8d337470bb9b4466aea9593df7f5fac776 (diff)
Rename ssa to ir
Diffstat (limited to 'src/parser.c')
-rw-r--r--src/parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.c b/src/parser.c
index 01cf196..fb21b19 100644
--- a/src/parser.c
+++ b/src/parser.c
@@ -37,7 +37,7 @@ static void parser_queue_file(Parser *self, BufferView path, ParserFileScopeRefe
int parser_init(Parser *self, amal_compiler *compiler, ArenaAllocator *allocator) {
self->allocator = allocator;
self->compiler = compiler;
- self->ssa = NULL;
+ self->ir = NULL;
self->started = bool_false;
self->error.index = 0;
self->error.str = NULL;