[Lldb-commits] [lldb] [lldb-dap] Show load addresses in disassembly (PR #136755)
Ely Ronnen via lldb-commits
lldb-commits at lists.llvm.org
Tue Apr 22 16:43:05 PDT 2025
================
@@ -138,7 +141,14 @@ bool SBInstructionList::GetDescription(lldb::SBStream &stream) {
return GetDescription(stream.ref());
}
-bool SBInstructionList::GetDescription(Stream &sref) {
+bool SBInstructionList::GetDescription(lldb::SBStream &stream,
+ lldb::SBExecutionContext &exe_ctx) {
+ LLDB_INSTRUMENT_VA(this, stream);
+ return GetDescription(stream.ref(), &exe_ctx);
+}
+
+bool SBInstructionList::GetDescription(Stream &sref,
+ lldb::SBExecutionContext *exe_ctx) {
----------------
eronnen wrote:
:100:
https://github.com/llvm/llvm-project/pull/136755
More information about the lldb-commits
mailing list