mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +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:
parent
bf4296f2c0
commit
a04933edc1
@ -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