mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 06:44:46 +00:00
insert inc and dec instructions
This commit is contained in:
parent
fc52bdc59a
commit
b716636db0
2 changed files with 37 additions and 4 deletions
|
@ -717,6 +717,9 @@ pub fn build_expr<'a, 'ctx, 'env>(
|
|||
todo!("LLVM build runtime error of {:?}", expr);
|
||||
}
|
||||
RunLowLevel(op, args) => run_low_level(env, layout_ids, scope, parent, *op, args),
|
||||
|
||||
IncBefore(_, expr) => build_expr(env, layout_ids, scope, parent, expr),
|
||||
DecAfter(_, expr) => build_expr(env, layout_ids, scope, parent, expr),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue