[Lldb-commits] [lldb] Implement reportsOriginalInstructions GDB remote feature (PR #201176)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Thu Jun 4 03:54:41 PDT 2026


================
@@ -687,6 +689,13 @@ bool GDBRemoteCommunicationClient::GetMemoryTaggingSupported() {
   return m_supports_memory_tagging == eLazyBoolYes;
 }
 
+bool GDBRemoteCommunicationClient::GetReportsOriginalInstructions() const {
+  if (m_supports_reportingOriginalInsts == eLazyBoolCalculate) {
+    GetRemoteQSupported();
+  }
+  return m_supports_reportingOriginalInsts == eLazyBoolYes;
----------------
DavidSpickett wrote:

The name GetReportsOriginalInstructions used later is perfect, use an equivalent of that for the `m_...`.

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


More information about the lldb-commits mailing list