mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01: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. llvm-svn: 241750
This commit is contained in:
parent
aa281f8938
commit
a73aa6c568
@ -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();
|
||||
|
BIN
test/Object/Inputs/symtab-only.a
Normal file
BIN
test/Object/Inputs/symtab-only.a
Normal file
Binary file not shown.
@ -34,3 +34,7 @@ THIN: rw-r--r-- 1000/1000 8 2014-12-16 00:56:27.000000000 evenlen
|
||||
THIN-NEXT: rw-r--r-- 1000/1000 7 2014-12-16 00:56:27.000000000 oddlen
|
||||
THIN-NEXT: rwxr-xr-x 1000/1000 1465 2014-12-16 00:56:27.000000000 very_long_bytecode_file_name.bc
|
||||
THIN-NEXT: rw-r--r-- 1000/1000 2280 2014-12-16 00:56:27.000000000 IsNAN.o
|
||||
|
||||
Test reading an archive with just a symbol table. We use to reject them.
|
||||
RUN: llvm-ar tv %p/Inputs/symtab-only.a | FileCheck --allow-empty --check-prefix=EMPTY %s
|
||||
EMPTY-NOT: {{.}}
|
||||
|
Loading…
Reference in New Issue
Block a user