[Lldb-commits] [lldb] Add AddressRange to SB API (PR #92014)

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Tue May 14 13:13:04 PDT 2024


================
@@ -0,0 +1,13 @@
+%extend lldb::SBAddressRangeList {
----------------
clayborg wrote:

If we add a method to SBAddressRangeList:
```
  bool GetDescription(lldb::SBStream &description);
```
Then we can add this to this file:
```
STRING_EXTENSION_OUTSIDE(SBAddressRangeList)
```
And then we can print the SBAddressRangeList objects as user readable strings.

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


More information about the lldb-commits mailing list