This revision was automatically updated to reflect the committed changes. Closed by commit rG6f59f302e435: [lldb] Fix m_hwp_regs size for ppc64le (PR54520) (authored by nikic). Herald added a project: LLDB. Herald added a subscriber: lldb-commits.
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D136144/new/ https://reviews.llvm.org/D136144 Files: lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_ppc64le.h Index: lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_ppc64le.h =================================================================== --- lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_ppc64le.h +++ lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_ppc64le.h @@ -122,7 +122,7 @@ int mode; // Defines if watchpoint is read/write/access. }; - std::array<DREG, 4> m_hwp_regs; + std::array<DREG, 16> m_hwp_regs; // 16 is just a maximum value, query hardware for actual watchpoint count uint32_t m_max_hwp_supported = 16;
Index: lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_ppc64le.h =================================================================== --- lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_ppc64le.h +++ lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_ppc64le.h @@ -122,7 +122,7 @@ int mode; // Defines if watchpoint is read/write/access. }; - std::array<DREG, 4> m_hwp_regs; + std::array<DREG, 16> m_hwp_regs; // 16 is just a maximum value, query hardware for actual watchpoint count uint32_t m_max_hwp_supported = 16;
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits