mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-04 02:24:29 +00:00
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:
@ -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();
|
||||
|
Reference in New Issue
Block a user