[lld] [llvm] [lld][AArch64][Build Attributes] Add support for converting AArch64 Build Attributes to GNU Properties (PR #131990)
Jack Styles via llvm-commits
llvm-commits at lists.llvm.org
Mon Apr 14 09:04:02 PDT 2025
================
@@ -657,6 +847,14 @@ template <class ELFT> void ObjFile<ELFT>::parse(bool ignoreComdats) {
}
}
+ bool isBE = ELFT::Endianness == llvm::endianness::big;
----------------
Stylie777 wrote:
Can this section of code all be contained within the `EM_AARCH64` case above its AArch64 specific code, so I think it's possible. This would also allow the variables created at line 710 -> 714 to be relocated to the AArch64 case too, as then everything is together.
https://github.com/llvm/llvm-project/pull/131990
More information about the llvm-commits
mailing list