[llvm-objdump] Fail early if we can't parse the object header.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256108 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Davide Italiano 2015-12-19 22:09:40 +00:00
parent 9c2c05d70e
commit f2adc7995e

View File

@ -1527,13 +1527,14 @@ static void printFaultMaps(const ObjectFile *Obj) {
}
static void printPrivateFileHeader(const ObjectFile *o) {
if (o->isELF()) {
if (o->isELF())
printELFFileHeader(o);
} else if (o->isCOFF()) {
else if (o->isCOFF())
printCOFFFileHeader(o);
} else if (o->isMachO()) {
else if (o->isMachO())
printMachOFileHeader(o);
}
else
report_fatal_error("Invalid/Unsupported object file format");
}
static void DumpObject(const ObjectFile *o) {