Make Binary::TypeID more granular, to distinguish between ELF 32/64 little/big

llvm-svn: 152435
This commit is contained in:
David Meyer
2012-03-09 20:41:57 +00:00
parent 4fccc877c9
commit d53422d1a7
9 changed files with 48 additions and 17 deletions

View File

@@ -174,7 +174,7 @@ error_code Archive::Child::getAsBinary(OwningPtr<Binary> &Result) const {
}
Archive::Archive(MemoryBuffer *source, error_code &ec)
: Binary(Binary::isArchive, source) {
: Binary(Binary::ID_Archive, source) {
// Check for sufficient magic.
if (!source || source->getBufferSize()
< (8 + sizeof(ArchiveMemberHeader) + 2) // Smallest archive.