[lld] [AArch64][GCS][LLD] Introduce -zgcs-report-dynamic Command Line Option (PR #127787)

Peter Smith via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 5 10:35:31 PST 2025


================
@@ -918,6 +918,60 @@ void ObjFile<ELFT>::initializeSections(bool ignoreComdats,
     handleSectionGroup<ELFT>(this->sections, entries);
 }
 
+template <typename ELFT>
+static void parseGnuPropertyNote(Ctx &ctx, uint32_t &featureAndType,
+                                 ArrayRef<uint8_t> &desc, ELFFileBase *f,
+                                 const uint8_t *base,
+                                 ArrayRef<uint8_t> *data = nullptr,
+                                 StringRef sectionName = ".note.gnu.property") {
----------------
smithp35 wrote:

The specification requires the name to be `.note.gnu.property` I think you can get rid of this parameter and inline the string in the diagnostic message below.

https://github.com/llvm/llvm-project/pull/127787


More information about the llvm-commits mailing list