================
@@ -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
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits