Fix missing handling of expression statements in aarch64 compiler
This commit is contained in:
parent
e5ce32d25f
commit
ad46b230d8
1 changed files with 5 additions and 0 deletions
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue