the actual fix

This commit is contained in:
Folkert 2023-10-08 21:03:51 +02:00
parent 734cfe9bce
commit c2216dfc9f
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
2 changed files with 52 additions and 51 deletions

View file

@ -126,7 +126,8 @@ pub struct StorageManager<
free_stack_chunks: Vec<'a, (i32, u32)>,
stack_size: u32,
// The amount of extra stack space needed to pass args for function calling.
/// Amount of extra stack space needed to pass arguments for a function call
/// This is usually zero, and only used when the argument passing registers are all used
fn_call_stack_size: u32,
}