mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-16 00:17:32 +00:00
[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:
parent
9c2c05d70e
commit
f2adc7995e
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user