[lld] [llvm] WIP: [LLD][COFF] Make unresolved symbol search behavior compliant with MSVC link.exe (PR #85290)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 25 11:18:19 PDT 2024
================
@@ -562,25 +565,120 @@ std::pair<Symbol *, bool> SymbolTable::insert(StringRef name, InputFile *file) {
return result;
}
+static LazyIntrusiveNode *lazyNode(Symbol *s) {
----------------
sylvain-audi wrote:
Naming convention: the name should reflect an action/verb for those 3 helper functions `lazyNode` `lazyParent` and `lazyArchive`
https://github.com/llvm/llvm-project/pull/85290
More information about the llvm-commits
mailing list