handle lambda set when passed as a function argument

This commit is contained in:
Folkert 2023-04-08 19:34:46 +02:00
parent fdffcc8b36
commit 67281b2712
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
6 changed files with 36 additions and 8 deletions

View file

@ -1131,6 +1131,9 @@ trait Backend<'a> {
ret_layout: &InLayout<'a>,
);
/// Move a returned value into `dst`
fn move_return_value(&mut self, dst: &Symbol, ret_layout: &InLayout<'a>);
/// build_num_abs stores the absolute value of src into dst.
fn build_num_abs(&mut self, dst: &Symbol, src: &Symbol, layout: &InLayout<'a>);