[Lldb-commits] [lldb] Add the ability to break on call-site locations, improve inline stepping (PR #112939)

Med Ismail Bennani via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 18 11:28:05 PDT 2024


================
@@ -537,7 +549,10 @@ void BreakpointLocation::GetDescription(Stream *s,
         if (sc.line_entry.line > 0) {
           s->EOL();
           s->Indent("location = ");
-          sc.line_entry.DumpStopContext(s, true);
+          if (GetPreferredLineEntry())
+            GetPreferredLineEntry()->DumpStopContext(s, true);
----------------
medismailben wrote:

ditto

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


More information about the lldb-commits mailing list