[lld] [PAC][lld][AArch64][ELF] Support signed GOT (PR #113815)
Daniil Kovalev via llvm-commits
llvm-commits at lists.llvm.org
Sun Dec 8 06:09:33 PST 2024
================
@@ -668,6 +668,8 @@ void GotSection::addConstant(const Relocation &r) { relocations.push_back(r); }
void GotSection::addEntry(const Symbol &sym) {
assert(sym.auxIdx == ctx.symAux.size() - 1);
ctx.symAux.back().gotIdx = numEntries++;
+ if (sym.hasFlag(NEEDS_GOT_AUTH))
----------------
kovdan01 wrote:
Fixed in 77361c75f4e6e8b99121f8a059a48593eb6a754d
https://github.com/llvm/llvm-project/pull/113815
More information about the llvm-commits
mailing list