[Lldb-commits] [lldb] [lldb-dap] Show load addresses in disassembly (PR #136755)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Tue Apr 22 16:35:44 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) {
----------------
JDevlieghere wrote:
This could take the private type (e.g. `ExecutionContext*`).
https://github.com/llvm/llvm-project/pull/136755
More information about the lldb-commits
mailing list