Parse pointer types

This commit is contained in:
2024-04-07 23:39:56 +02:00
parent aa3df7f4d3
commit 60acf3b9a3
11 changed files with 344 additions and 101 deletions

View File

@ -289,6 +289,10 @@ namespace elna::riscv
statement->body().accept(this);
}
void visitor::visit(source::type_expression *type)
{
}
void visitor::visit(source::variable_expression *variable)
{
const auto free_register = this->register_in_use ? x_register::a0 : x_register::t0;