[Lldb-commits] [lldb] [lldb][AArch64][Linux] Use member initialisers (PR #197122)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Tue May 12 22:14:50 PDT 2026
================
@@ -91,63 +91,56 @@ class NativeRegisterContextLinux_arm64
bool m_za_header_is_valid;
bool m_pac_mask_is_valid;
bool m_tls_is_valid;
- size_t m_tls_size;
+ size_t m_tls_size = 0;
bool m_gcs_is_valid;
bool m_poe_is_valid;
- struct user_pt_regs m_gpr_arm64; // 64-bit general purpose registers.
+ // 64-bit general purpose registers.
----------------
JDevlieghere wrote:
These should be `///` but I'm sure you did this for consistency. If there aren't that many, maybe it's worth fixing all of them?
```suggestion
/// 64-bit general purpose registers.
```
https://github.com/llvm/llvm-project/pull/197122
More information about the lldb-commits
mailing list