Merge pull request #676 from GuillaumeGomez/rdl_room

Add missing `add_eval` to generate `__rdl_oom` in the alloc error handler
This commit is contained in:
antoyo 2025-05-16 10:18:24 -04:00 committed by GitHub
commit 7cc33bea9b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -152,6 +152,7 @@ fn create_wrapper_function(
if output.is_some() {
block.end_with_return(None, ret);
} else {
block.add_eval(None, ret);
block.end_with_void_return(None);
}