[Lldb-commits] [lldb] [lldb][AArch64][Linux] Add support for SME only systems (PR #165413)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Wed Oct 29 10:13:54 PDT 2025


================
@@ -510,8 +562,9 @@ Status NativeRegisterContextLinux_arm64::WriteRegister(
     } else {
       // SVE enabled, we will read and cache SVE ptrace data.
       error = ReadAllSVE();
-      if (error.Fail())
+      if (error.Fail()) {
         return error;
+      }
----------------
DavidSpickett wrote:

Will remove extra braces.

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


More information about the lldb-commits mailing list