[Lldb-commits] [lldb] [lldb-dap] Prevent using an implicit `step-in`. (PR #143644)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Tue Jul 1 01:32:53 PDT 2025
labath wrote:
The way I understand this, this patch isn't trying to fix the step over problem (https://github.com/llvm/llvm-project/issues/144061). What it does is fix a different (but similar) problem in lldb-dap where it would show the wrong source code for in cases where the step operations ends up in a different file. And the fix is really to trust the file information that lldb provides (its "virtual inline stack counter") rather than trying to find the file by resolving the PC value. The extent this deals with #144061 is that we need to work around that bug in order to make a test for the lldb-dap bug.
https://github.com/llvm/llvm-project/pull/143644
More information about the lldb-commits
mailing list