This change renames this method match its original name and the name
used in the wasm linker.
Back in d8f8abbd4a2823f223bd7bc56445541fb221b512 the ELF SymbolTable
method getSymbols() was replaced with forEachSymbol.
Then in a2fc96441788fba1e4709d63677f34ed8e321dae forEachSymbol was
replaced with a llvm::iterator_range.
Then in e9262edf0d11a907763098d8e101219ccd9c43e9 we came full circle
and the llvm::iterator_range was replaced with a symbols() accessor
that was identical the original getSymbols().
getSymbols also matches the name used elsewhere in the ELF linker as
well as in both COFF and wasm backend (e.g. InputFiles.h and
SyntheticSections.h)