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
1:fnmain(){2:zzz();3:let s = String::from("sss");4:zzz();5:}6:7:fnzzz(){}
Set a breakpoint on line 2 and start line-stepping. The line position order will be something like this: 2, 3, 4, 3 (cleanup for s), 1 (epilogue for main).
I think everyone will agree that it would make much more sense to attribute the last two to line 5.
The fix will probably need to be done in rustc_trans::mir::MirContext::trans_block.
Also, this probably means that mir::SourceInfo should carry a Pos, not a Span (we only ever use span.lo anyways).
The text was updated successfully, but these errors were encountered:
Fix line stepping in debugger.
Attribute drop code to block's closing brace, instead of the line where the allocation was done.
Attribute function epilogues to function body's closing brace, rather than the function header.
Fixesrust-lang#37032
r? @michaelwoerister
Fix line stepping in debugger.
Attribute drop code to block's closing brace, instead of the line where the allocation was done.
Attribute function epilogues to function body's closing brace, rather than the function header.
Fixes#37032
r? @michaelwoerister
Compile this code with debug info (-g):
Set a breakpoint on line 2 and start line-stepping. The line position order will be something like this: 2, 3, 4, 3 (cleanup for
s
), 1 (epilogue formain
).I think everyone will agree that it would make much more sense to attribute the last two to line 5.
The fix will probably need to be done in rustc_trans::mir::MirContext::trans_block.
Also, this probably means that
mir::SourceInfo
should carry aPos
, not aSpan
(we only ever use span.lo anyways).The text was updated successfully, but these errors were encountered: