You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously something like the following was generated:
```rs
fn foo(bar: u64) -> u64 {
fn inner(bar: u64) -> u64 {
let body = {
// if return is used here then the syscall magic
// will not be called. This made the generated
// code skip some of the syscalls in the syslog
// because the return returned from the function
// not the scope it self. So to solve this
// problem the body is inserted into an
// even_inner function and to be nice, its
// annotated with #[inline(always)]
//
// return 69;
};
// syslog magic
body
}
inner(bar);
}
```
Sometimes it just happens. Stay safe with scopes guys! Stay Giga :^)
Signed-off-by: Andy-Python-Programmer <[email protected]>
0 commit comments