mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-24 06:55:15 +00:00
wasm: Fix number of args for higher-order lowlevels
This commit is contained in:
parent
b3bb477ccb
commit
12c6c25031
1 changed files with 2 additions and 2 deletions
|
@ -2790,9 +2790,9 @@ fn list_map_n<'a>(
|
|||
let ptr = backend.get_fn_ptr(idx);
|
||||
backend.code_builder.i32_const(ptr);
|
||||
}
|
||||
7 + arg_elem_layouts.len() * 4
|
||||
} else {
|
||||
7 + arg_elem_layouts.len() * 3
|
||||
} else {
|
||||
9
|
||||
};
|
||||
|
||||
let has_return_val = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue