[PATCH] D116913: [lld-macho] Add --start-lib --end-lib
Fangrui Song via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 11 17:36:01 PST 2022
MaskRay added a subscriber: oontvoo.
MaskRay added inline comments.
================
Comment at: lld/MachO/UnwindInfoSection.cpp:229
if (Symbol *sym = symtab->find(defined->getName()))
- if (sym->kind() != Symbol::LazyArchiveKind)
+ if (!sym->isLazy())
r.referent = s = sym;
----------------
@oontvoo This change does not make the new test in `lld/test/MachO/objc-uses-custom-personality.s` work. Do you know why?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D116913/new/
https://reviews.llvm.org/D116913
More information about the llvm-commits
mailing list