Regenerate test file.

It had been created with a lld version that was producing an invalid
sh_info.

llvm-svn: 265305
This commit is contained in:
Rafael Espindola
2016-04-04 16:02:39 +00:00
parent c687225b43
commit c64119a9bf
3 changed files with 1 additions and 4 deletions

View File

@@ -426,9 +426,6 @@ template <class ELFT> void SharedFile<ELFT>::parseRest() {
uint32_t NumSymbols = std::distance(Syms.begin(), Syms.end());
SymbolBodies.reserve(NumSymbols);
for (const Elf_Sym &Sym : Syms) {
// FIXME: We should probably just err if we get a local symbol in here.
if (Sym.getBinding() == STB_LOCAL)
continue;
StringRef Name = check(Sym.getName(this->StringTable));
if (Sym.isUndefined())
Undefs.push_back(Name);