[lld] [lld-macho] Add support for category names in ConcatInputSection's (PR #90850)

Ellis Hoag via llvm-commits llvm-commits at lists.llvm.org
Thu May 2 13:47:34 PDT 2024


================
@@ -186,13 +186,24 @@ ObjcCategoryChecker::ObjcCategoryChecker()
       roClassLayout(target->wordSize), listHeaderLayout(target->wordSize),
       methodLayout(target->wordSize) {}
 
-// \p r must point to an offset within a cstring section.
+// \p r must point to an offset within a CStringInputSection or a
+// ConcatInputSection
 static StringRef getReferentString(const Reloc &r) {
   if (auto *isec = r.referent.dyn_cast<InputSection *>())
     return cast<CStringInputSection>(isec)->getStringRefAtOffset(r.addend);
   auto *sym = cast<Defined>(r.referent.get<Symbol *>());
-  return cast<CStringInputSection>(sym->isec())
-      ->getStringRefAtOffset(sym->value + r.addend);
+  if (isa<CStringInputSection>(sym->isec()))
+    return cast<CStringInputSection>(sym->isec())
+        ->getStringRefAtOffset(sym->value + r.addend);
----------------
ellishg wrote:

```suggestion
  if (auto *s = dyn_cast_or_null<CStringInputSection>(sym->isec()))
    return s->getStringRefAtOffset(sym->value + r.addend);
```

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


More information about the llvm-commits mailing list