diff options
| author | antoyo <antoyo@users.noreply.github.com> | 2025-05-16 10:18:24 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-16 10:18:24 -0400 |
| commit | 7cc33bea9b21cc3a18e54faa9a2e27d664cb31c8 (patch) | |
| tree | 52102082f7bebfd99c5020849fb3715497cb163e | |
| parent | 6ba33f5e1189a5ae58fb96ce3546e76b13d090f5 (diff) | |
| parent | f0648966e4aa48d83bbd395c513ad1febbb5a8e6 (diff) | |
| download | rust-7cc33bea9b21cc3a18e54faa9a2e27d664cb31c8.tar.gz rust-7cc33bea9b21cc3a18e54faa9a2e27d664cb31c8.zip | |
Merge pull request #676 from GuillaumeGomez/rdl_room
Add missing `add_eval` to generate `__rdl_oom` in the alloc error handler
| -rw-r--r-- | src/allocator.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/allocator.rs b/src/allocator.rs index f4ebd42ee2d..279b7dd2fb9 100644 --- a/src/allocator.rs +++ b/src/allocator.rs @@ -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); } |
