[lld] [LLD][COFF] Introduce hybrid symbol table for EC input files on ARM64X (PR #119294)
Fangrui Song via llvm-commits
llvm-commits at lists.llvm.org
Mon Dec 9 20:53:47 PST 2024
================
@@ -129,7 +129,7 @@ void SectionChunk::applyRelX64(uint8_t *off, uint16_t type, OutputSection *os,
case IMAGE_REL_AMD64_REL32_4: add32(off, s - p - 8); break;
case IMAGE_REL_AMD64_REL32_5: add32(off, s - p - 9); break;
case IMAGE_REL_AMD64_SECTION:
- applySecIdx(off, os, file->ctx.outputSections.size());
+ applySecIdx(off, os, file->symtab.ctx.outputSections.size());
----------------
MaskRay wrote:
drive-by: why `file->symtab.ctx` instead of `file->ctx`?
https://github.com/llvm/llvm-project/pull/119294
More information about the llvm-commits
mailing list