[Lldb-commits] [lldb] [LLDB][Process/Utility] Introduce NativeRegisterContextDBReg class (PR #118043)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Tue Dec 10 02:03:19 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) {
----------------
DavidSpickett wrote:

Please add the parameter name like:
```
NativeRegisterContextDBReg_arm64(/*enable_bit=*/1U)
```

https://github.com/llvm/llvm-project/pull/118043


More information about the lldb-commits mailing list