[lld/COFF] Remove needless indirection

`symtab.ctx.symtab` is just `symtab`. Looks like #119296 added
this using a global find-and-replace.

This was the only instance of `symtab.ctx.symtab` in lld/.

No behavior change.
This commit is contained in:
Nico Weber 2024-12-17 16:26:23 -05:00
parent 169c32eb49
commit cde996c31d

View File

@ -116,7 +116,7 @@ static void forceLazy(Symbol *s) {
}
case Symbol::Kind::LazyObjectKind: {
InputFile *file = cast<LazyObject>(s)->file;
file->symtab.ctx.symtab.addFile(file);
file->symtab.addFile(file);
break;
}
case Symbol::Kind::LazyDLLSymbolKind: {