[llvm-objdump] Use appropriate helper. NFC.

llvm-svn: 256156
This commit is contained in:
Davide Italiano 2015-12-21 14:10:54 +00:00
parent 60b5e1b6c0
commit bbd5d1692d
1 changed files with 1 additions and 2 deletions

View File

@ -1650,8 +1650,7 @@ void llvm::ParseInputMachO(StringRef Filename) {
errs() << "llvm-objdump: '" << Filename << "': "
<< "Object is not a Mach-O file type.\n";
} else
errs() << "llvm-objdump: '" << Filename << "': "
<< "Unrecognized file type.\n";
report_error(Filename, object_error::invalid_file_type);
}
typedef std::pair<uint64_t, const char *> BindInfoEntry;