[Lldb-commits] [lldb] [lldb][AArch64] Move register info reconfigure into architecture plugin (PR #70950)

Med Ismail Bennani via lldb-commits lldb-commits at lists.llvm.org
Fri Nov 3 09:55:53 PDT 2023


================
@@ -93,6 +93,10 @@ class DynamicRegisterInfo {
     return llvm::iterator_range<reg_collection::const_iterator>(m_regs);
   }
 
+  llvm::iterator_range<reg_collection::iterator> registers_mutable() {
----------------
medismailben wrote:

You should be able to use template specialization on the return type to use the same method name.

I don't feel strongly about implementing it, if you don't feel comfortable writing templated code, just a nice to have :).

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


More information about the lldb-commits mailing list