[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
================
@@ -62,8 +67,8 @@ class LLDB_API SBInstructionList {
friend class SBTarget;
void SetDisassembler(const lldb::DisassemblerSP &opaque_sp);
- bool GetDescription(lldb_private::Stream &description);
-
+ bool GetDescription(lldb_private::Stream &description,
+ lldb::SBExecutionContext *exe_ctx = nullptr);
----------------
JDevlieghere wrote:
I guess this can now take the private type (i.e. `ExecutionContext*`). All the SB API objects are PIMPL objects so it feels a bit weird to take their address.
https://github.com/llvm/llvm-project/pull/136755
More information about the lldb-commits
mailing list