[lld] [AArch64][GCS][LLD] Introduce -zgcs-report-dynamic Command Line Option (PR #127787)
Jack Styles via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 10 04:42:18 PDT 2025
================
@@ -360,10 +360,22 @@ class SharedFile : public ELFFileBase {
// parsed. Only filled for `--no-allow-shlib-undefined`.
SmallVector<Symbol *, 0> requiredSymbols;
+ template <typename ELFT> typename ELFT::PhdrRange getELFPhdrs() const {
+ return typename ELFT::PhdrRange(
+ reinterpret_cast<const typename ELFT::Phdr *>(elfPhdrs), numElfPhdrs);
+ }
+
+protected:
+ const void *elfPhdrs = nullptr;
----------------
Stylie777 wrote:
Managed to remove all the variables here, plus the `getELFPhdrs` function.
https://github.com/llvm/llvm-project/pull/127787
More information about the llvm-commits
mailing list