[Lldb-commits] [lldb] [LLDB] Enable TLS Variable Debugging Without Location Info on AArch64 (PR #110822)

via lldb-commits lldb-commits at lists.llvm.org
Wed Oct 2 07:42:08 PDT 2024


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {clang-format}-->


:warning: C/C++ code formatter, clang-format found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
git-clang-format --diff e379094328e49731a606304f7e3559d4f1fa96f9 ba3071566ac697e750606c7fc941e5f6fc738367 --extensions cpp,h -- lldb/include/lldb/Symbol/Variable.h lldb/source/Core/ValueObjectVariable.cpp lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.cpp lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.h lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.cpp lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp lldb/source/Symbol/Variable.cpp
``````````

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.h b/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.h
index b1a0a1957e..002690690c 100644
--- a/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.h
+++ b/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.h
@@ -472,10 +472,8 @@ static uint32_t g_d31_invalidates[] = {fpu_v31, fpu_s31, LLDB_INVALID_REGNUM};
 
 // Generates register kinds array for registers with only generic kind
 #define GENERIC_KIND(generic_kind)                                             \
-  {                                                                            \
-    LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, generic_kind,                    \
-        LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM                               \
-  }
+  {LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, generic_kind,                     \
+   LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM}
 
 // Generates register kinds array for registers with only lldb kind
 #define KIND_ALL_INVALID                                                       \

``````````

</details>


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


More information about the lldb-commits mailing list