[PATCH] D94316: [lld-macho] Associate each Symbol with an InputFile
Shoaib Meenai via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 2 15:37:54 PST 2021
smeenai accepted this revision.
smeenai added a comment.
This revision is now accepted and ready to land.
LGTM
================
Comment at: lld/MachO/SymbolTable.h:37
public:
- Symbol *addDefined(StringRef name, InputSection *isec, uint32_t value,
- bool isWeakDef, bool isPrivateExtern);
+ Symbol *addDefined(StringRef name, InputFile *, InputSection *,
+ uint32_t value, bool isWeakDef, bool isPrivateExtern);
----------------
Pretty sure I've asked you this before (but I can't remember the answer): how come some parameters are named in the declaration and some aren't?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D94316/new/
https://reviews.llvm.org/D94316
More information about the llvm-commits
mailing list