[Lldb-commits] [clang] [lldb] [llvm] Extending LLDB to work on AIX (PR #102601)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Fri Aug 9 07:41:15 PDT 2024


================
@@ -67,6 +67,10 @@ class RegisterContextUnwind : public lldb_private::RegisterContext {
 
   bool ReadPC(lldb::addr_t &start_pc);
 
+#ifdef __AIX__
+  bool ReadLR(lldb::addr_t &lr);
+#endif
+
----------------
DavidSpickett wrote:

It's likely we'd ask you to make this a method on all platforms that is only called on, or implemented for, AIX.

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


More information about the lldb-commits mailing list