Author: Jason Molenda
Date: 2026-03-02T14:56:44-08:00
New Revision: 0f8aa9610c0ae138bb92a04180787675d732dc72

URL: 
https://github.com/llvm/llvm-project/commit/0f8aa9610c0ae138bb92a04180787675d732dc72
DIFF: 
https://github.com/llvm/llvm-project/commit/0f8aa9610c0ae138bb92a04180787675d732dc72.diff

LOG: [lldb][NFC] Whitespace cleanup in RegisterContextMinidump_ARM64
Breaking out the whitespace changes turned up in a separate
contentful PR.

Added: 
    

Modified: 
    lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.cpp

Removed: 
    


################################################################################
diff  --git 
a/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.cpp 
b/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.cpp
index a0476c962070c..c164fb9da29b4 100644
--- a/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.cpp
+++ b/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.cpp
@@ -307,49 +307,56 @@ static RegisterInfo g_reg_infos[] = {
     DEF_X(26),
     DEF_X(27),
     DEF_X(28),
-    {"fp",
-     "x29",
-     8,
-     OFFSET(x) + 29 * 8,
-     eEncodingUint,
-     eFormatHex,
-     {arm64_dwarf::x29, arm64_dwarf::x29, LLDB_REGNUM_GENERIC_FP, INV, reg_fp},
-     nullptr,
-     nullptr,
-     nullptr,
+    {
+        "fp",
+        "x29",
+        8,
+        OFFSET(x) + 29 * 8,
+        eEncodingUint,
+        eFormatHex,
+        {arm64_dwarf::x29, arm64_dwarf::x29, LLDB_REGNUM_GENERIC_FP, INV,
+         reg_fp},
+        nullptr,
+        nullptr,
+        nullptr,
     },
-    {"lr",
-     "x30",
-     8,
-     OFFSET(x) + 30 * 8,
-     eEncodingUint,
-     eFormatHex,
-     {arm64_dwarf::x30, arm64_dwarf::x30, LLDB_REGNUM_GENERIC_RA, INV, reg_lr},
-     nullptr,
-     nullptr,
-     nullptr,
+    {
+        "lr",
+        "x30",
+        8,
+        OFFSET(x) + 30 * 8,
+        eEncodingUint,
+        eFormatHex,
+        {arm64_dwarf::x30, arm64_dwarf::x30, LLDB_REGNUM_GENERIC_RA, INV,
+         reg_lr},
+        nullptr,
+        nullptr,
+        nullptr,
     },
-    {"sp",
-     "x31",
-     8,
-     OFFSET(x) + 31 * 8,
-     eEncodingUint,
-     eFormatHex,
-     {arm64_dwarf::x31, arm64_dwarf::x31, LLDB_REGNUM_GENERIC_SP, INV, reg_sp},
-     nullptr,
-     nullptr,
-     nullptr,
+    {
+        "sp",
+        "x31",
+        8,
+        OFFSET(x) + 31 * 8,
+        eEncodingUint,
+        eFormatHex,
+        {arm64_dwarf::x31, arm64_dwarf::x31, LLDB_REGNUM_GENERIC_SP, INV,
+         reg_sp},
+        nullptr,
+        nullptr,
+        nullptr,
     },
-    {"pc",
-     nullptr,
-     8,
-     OFFSET(pc),
-     eEncodingUint,
-     eFormatHex,
-     {arm64_dwarf::pc, arm64_dwarf::pc, LLDB_REGNUM_GENERIC_PC, INV, reg_pc},
-     nullptr,
-     nullptr,
-     nullptr,
+    {
+        "pc",
+        nullptr,
+        8,
+        OFFSET(pc),
+        eEncodingUint,
+        eFormatHex,
+        {arm64_dwarf::pc, arm64_dwarf::pc, LLDB_REGNUM_GENERIC_PC, INV, 
reg_pc},
+        nullptr,
+        nullptr,
+        nullptr,
     },
     // w0 - w31
     DEF_W(0),
@@ -384,38 +391,41 @@ static RegisterInfo g_reg_infos[] = {
     DEF_W(29),
     DEF_W(30),
     DEF_W(31),
-    {"cpsr",
-     "psr",
-     4,
-     OFFSET(cpsr),
-     eEncodingUint,
-     eFormatHex,
-     {INV, arm64_dwarf::cpsr, LLDB_REGNUM_GENERIC_FLAGS, INV, reg_cpsr},
-     nullptr,
-     nullptr,
-     nullptr,
+    {
+        "cpsr",
+        "psr",
+        4,
+        OFFSET(cpsr),
+        eEncodingUint,
+        eFormatHex,
+        {INV, arm64_dwarf::cpsr, LLDB_REGNUM_GENERIC_FLAGS, INV, reg_cpsr},
+        nullptr,
+        nullptr,
+        nullptr,
     },
-    {"fpsr",
-     nullptr,
-     4,
-     OFFSET(fpsr),
-     eEncodingUint,
-     eFormatHex,
-     {INV, INV, INV, INV, reg_fpsr},
-     nullptr,
-     nullptr,
-     nullptr,
+    {
+        "fpsr",
+        nullptr,
+        4,
+        OFFSET(fpsr),
+        eEncodingUint,
+        eFormatHex,
+        {INV, INV, INV, INV, reg_fpsr},
+        nullptr,
+        nullptr,
+        nullptr,
     },
-    {"fpcr",
-     nullptr,
-     4,
-     OFFSET(fpcr),
-     eEncodingUint,
-     eFormatHex,
-     {INV, INV, INV, INV, reg_fpcr},
-     nullptr,
-     nullptr,
-     nullptr,
+    {
+        "fpcr",
+        nullptr,
+        4,
+        OFFSET(fpcr),
+        eEncodingUint,
+        eFormatHex,
+        {INV, INV, INV, INV, reg_fpcr},
+        nullptr,
+        nullptr,
+        nullptr,
     },
     // v0 - v31
     DEF_V(0),


        
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to