diff options
author | b10902118 <b10902118@ntu.edu.tw> | 2025-07-28 19:47:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-28 12:47:02 +0100 |
commit | a74167dfdc18fa85f195ea01a3013804dc7aeb5d (patch) | |
tree | 6875f31842d350bc3b23bec86926c85b80137f5b | |
parent | e30e644266fbc9ba638ee2c6aa23b5691397163f (diff) | |
download | llvm-a74167dfdc18fa85f195ea01a3013804dc7aeb5d.zip llvm-a74167dfdc18fa85f195ea01a3013804dc7aeb5d.tar.gz llvm-a74167dfdc18fa85f195ea01a3013804dc7aeb5d.tar.bz2 |
[lldb][Arm32] Remove unused watchpoint refcount. (#150770)
Already removed in NativeRegisterContextDBReg.h
-rw-r--r-- | lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm.h b/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm.h index 15b4660..420e866 100644 --- a/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm.h +++ b/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm.h @@ -109,7 +109,6 @@ private: // occurred. lldb::addr_t real_addr; // Address value that should cause target to stop. uint32_t control; // Breakpoint/watchpoint control value. - uint32_t refcount; // Serves as enable/disable and reference counter. }; struct DREG m_hbr_regs[16]; // Arm native linux hardware breakpoints |