Remove redundant `Symtab->`.
authorRui Ueyama <ruiu@google.com>
Tue, 9 Oct 2018 20:22:18 +0000 (20:22 +0000)
committerRui Ueyama <ruiu@google.com>
Tue, 9 Oct 2018 20:22:18 +0000 (20:22 +0000)
commitfbc629702d69bf7ca8a73106f1df52a0c33b54c5
treeb39397866898dbe3680e7d5e44775a779b2ee2ed
parent714abece2ba7d80e29f5c40b0e29b4bcf3dd2b50
Remove redundant `Symtab->`.

`SymbolTable` is a singleton class and is a global variable for the
unique instance, so we can always refer the symtab by `Symtab->`.
However, we don't need to use the global varaible from member functions
of SymbolTable class.

llvm-svn: 344075
lld/ELF/SymbolTable.cpp