[Lldb-commits] [lldb] [lldb][DWARFASTParserClang] Prevent unnamed bitfield creation in the presence of overlapping fields (PR #108343)
via lldb-commits
lldb-commits at lists.llvm.org
Thu Sep 12 06:18:41 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 703ebca869e1e684147d316b7bdb15437c12206a 5d25eeb8cb993dc85869ace156d4a1505c9faa67 --extensions h,cpp -- lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h lldb/test/Shell/SymbolFile/DWARF/no_unique_address-with-bitfields.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp b/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
index 9455bc7106..5b679bd5a6 100644
--- a/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
+++ b/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
@@ -2943,7 +2943,8 @@ void DWARFASTParserClang::ParseSingleMember(
}
if (this_field_info.GetFieldEnd() <= last_field_info.GetEffectiveFieldEnd())
- this_field_info.SetEffectiveFieldEnd(last_field_info.GetEffectiveFieldEnd());
+ this_field_info.SetEffectiveFieldEnd(
+ last_field_info.GetEffectiveFieldEnd());
last_field_info = this_field_info;
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/108343
More information about the lldb-commits
mailing list