[llvm] Reorder fields for better packing (PR #77998)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 12 15:15:33 PST 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 8cd956197fc08debb8b2ce6894bad59800e1993e 9a36d2bc663ea180ad7ee6a5fa85063a571d796a -- llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
index f874cfbeb9..e09c632842 100644
--- a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
+++ b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
@@ -169,8 +169,8 @@ public:
unsigned SectionA, uint64_t SectionAOffset, unsigned SectionB,
uint64_t SectionBOffset, bool IsPCRel, unsigned Size)
: Offset(offset), Addend(SectionAOffset - SectionBOffset + addend),
- SectionID(id), RelType(type), Size(Size),
- IsPCRel(IsPCRel), IsTargetThumbFunc(false) {
+ SectionID(id), RelType(type), Size(Size), IsPCRel(IsPCRel),
+ IsTargetThumbFunc(false) {
Sections.SectionA = SectionA;
Sections.SectionB = SectionB;
}
@@ -180,8 +180,8 @@ public:
uint64_t SectionBOffset, bool IsPCRel, unsigned Size,
bool IsTargetThumbFunc)
: Offset(offset), Addend(SectionAOffset - SectionBOffset + addend),
- SectionID(id), RelType(type), Size(Size),
- IsPCRel(IsPCRel), IsTargetThumbFunc(IsTargetThumbFunc) {
+ SectionID(id), RelType(type), Size(Size), IsPCRel(IsPCRel),
+ IsTargetThumbFunc(IsTargetThumbFunc) {
Sections.SectionA = SectionA;
Sections.SectionB = SectionB;
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/77998
More information about the llvm-commits
mailing list