[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:
parent
169c32eb49
commit
cde996c31d
@ -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: {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user