[Lldb-commits] [PATCH] D83580: [lldb] on s390x fix override issue
Konrad Wilhelm Kleine via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Jul 10 12:12:10 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rGecfa01e956a4: [lldb] on s390x fix override issue (authored by kwk).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D83580/new/
https://reviews.llvm.org/D83580
Files:
lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_s390x.h
Index: lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_s390x.h
===================================================================
--- lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_s390x.h
+++ lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_s390x.h
@@ -76,7 +76,7 @@
Status WriteFPR() override;
void *GetGPRBuffer() override { return &m_regs; }
- size_t GetGPRSize() override { return sizeof(m_regs); }
+ size_t GetGPRSize() const override { return sizeof(m_regs); }
void *GetFPRBuffer() override { return &m_fp_regs; }
size_t GetFPRSize() override { return sizeof(m_fp_regs); }
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D83580.277118.patch
Type: text/x-patch
Size: 638 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200710/dd719cdc/attachment.bin>
More information about the lldb-commits
mailing list