[llvm] [llvm][yaml2obj] Modify section header overriding timing (PR #130942)
James Henderson via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 02:53:36 PDT 2025
================
@@ -845,7 +849,7 @@ void ELFState<ELFT>::initSectionHeaders(std::vector<Elf_Shdr> &SHeaders,
}
LocationCounter += SHeader.sh_size;
- overrideFields<ELFT>(Sec, SHeader);
+ SectionHeadersOverrideHelper.push_back({SN2I.get(Sec->Name), *Sec});
----------------
jh7370 wrote:
I'm struggling to follow why you can't just store `Sec` and `SHeader` in the vector (`SHeader` as a pointer, obviously)?
https://github.com/llvm/llvm-project/pull/130942
More information about the llvm-commits
mailing list