[Lldb-commits] [lldb] [LLDB][Process/Utility] Introduce NativeRegisterContextDBReg class (PR #118043)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Dec 10 04:29:38 PST 2024
================
@@ -180,7 +180,8 @@ NativeRegisterContextLinux_arm64::NativeRegisterContextLinux_arm64(
std::unique_ptr<RegisterInfoPOSIX_arm64> register_info_up)
: NativeRegisterContextRegisterInfo(native_thread,
register_info_up.release()),
- NativeRegisterContextLinux(native_thread) {
+ NativeRegisterContextLinux(native_thread),
+ NativeRegisterContextDBReg_arm64(1U) {
----------------
wangleiat wrote:
Thank you, I will add the parameter annotations.
https://github.com/llvm/llvm-project/pull/118043
More information about the lldb-commits
mailing list