[Lldb-commits] [PATCH] D102872: Fix lldb-server build failure on mips
Khem Raj via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu May 20 14:22:55 PDT 2021
raj.khem updated this revision to Diff 346855.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D102872/new/
https://reviews.llvm.org/D102872
Files:
lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux.cpp
Index: lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux.cpp
===================================================================
--- lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux.cpp
+++ lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux.cpp
@@ -23,6 +23,13 @@
return m_thread.GetProcess().GetByteOrder();
}
+std::unique_ptr<NativeRegisterContextLinux>
+NativeRegisterContextLinux::CreateHostNativeRegisterContextLinux(
+ const ArchSpec &target_arch,
+ NativeThreadLinux &native_thread) {
+ return 0;
+}
+
Status NativeRegisterContextLinux::ReadRegisterRaw(uint32_t reg_index,
RegisterValue ®_value) {
const RegisterInfo *const reg_info = GetRegisterInfoAtIndex(reg_index);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D102872.346855.patch
Type: text/x-patch
Size: 844 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20210520/4652516f/attachment.bin>
More information about the lldb-commits
mailing list