[lld] [ELF] Rename LazyObject to LazySymbol. NFC (PR #78809)
Sam Clegg via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 19 15:54:03 PST 2024
================
@@ -146,7 +146,7 @@ static uint64_t getSymVA(const Symbol &sym, int64_t addend) {
case Symbol::SharedKind:
case Symbol::UndefinedKind:
return 0;
- case Symbol::LazyObjectKind:
+ case Symbol::LazySymbolKind:
----------------
sbc100 wrote:
I think this can also just be `LazyKind` since its matches the other kinds.
https://github.com/llvm/llvm-project/pull/78809
More information about the llvm-commits
mailing list