[Lldb-commits] [lldb] [lldb-dap] Prevent using an implicit `step-in`. (PR #143644)

Felipe de Azevedo Piovezan via lldb-commits lldb-commits at lists.llvm.org
Wed Jun 11 09:32:00 PDT 2025


================
@@ -581,19 +581,19 @@ llvm::json::Value CreateStackFrame(lldb::SBFrame &frame,
 
   EmplaceSafeString(object, "name", frame_name);
 
-  auto target = frame.GetThread().GetProcess().GetTarget();
-  auto source = CreateSource(frame.GetPCAddress(), target);
----------------
felipepiovezan wrote:

Would this patch become simpler if we called `StackFrame::GetFrameCodeAddressForSymbolication` instead of `GetPCAddress` here? I think that's how LLDB solves this problem

https://github.com/llvm/llvm-project/pull/143644


More information about the lldb-commits mailing list