Fix missing handling of expression statements in aarch64 compiler

This commit is contained in:
Nikita Lisitsa 2026-03-13 12:53:18 +03:00
parent e5ce32d25f
commit ad46b230d8

View file

@ -722,6 +722,11 @@ namespace pslang::jit::aarch64
pop(30);
}
void apply(ast::expression_ptr const & node)
{
apply(*node);
}
void apply(ast::assignment const & node)
{
auto identifier = std::get_if<ast::identifier>(node.lhs.get());