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
[lldb][swift] Increase number of Rows inspected when unwinding async functions
We were overly conservatives in our initial estimations: if callee saved
registers are used, they are usually spilled first, increasing the
number of rows in the prologue.
This also revealed an embarrassing bug in how we computed the offset of
a iterator in the vector:
```
- int row_idx = fp_locs.end() - it;
+ int row_idx = it - fp_locs.begin();
```
0 commit comments