Don't reject an archive with just a symbol table.

It is pretty unambiguous how to interpret it and gnu ar accepts it too.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241750 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola
2015-07-08 22:27:54 +00:00
parent bf4296f2c0
commit a04933edc1
3 changed files with 5 additions and 1 deletions

View File

@ -288,7 +288,7 @@ Archive::Archive(MemoryBufferRef Source, std::error_code &ec)
++i;
if (i == e) {
ec = object_error::parse_failed;
ec = std::error_code();
return;
}
Name = i->getRawName();