[lld] [llvm] [LLD][ELF][AArch64] Add support for SHF_AARCH64_PURECODE ELF section flag (3/3) (PR #125689)
Csanád Hajdú via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 4 07:33:48 PST 2025
================
@@ -161,8 +162,11 @@ void OutputSection::commitSection(InputSection *isec) {
}
isec->parent = this;
- uint64_t andMask =
- ctx.arg.emachine == EM_ARM ? (uint64_t)SHF_ARM_PURECODE : 0;
+ uint64_t andMask = 0;
+ if (ctx.arg.emachine == EM_ARM)
----------------
Il-Capitano wrote:
Similarly to above, I didn't want to mix flags from different architectures, even though they have the same value.
https://github.com/llvm/llvm-project/pull/125689
More information about the llvm-commits
mailing list