General clean up of error handling in llvm-objdump to remove its use of report_fatal_...
authorKevin Enderby <enderby@apple.com>
Wed, 16 Nov 2016 22:17:38 +0000 (22:17 +0000)
committerKevin Enderby <enderby@apple.com>
Wed, 16 Nov 2016 22:17:38 +0000 (22:17 +0000)
commit7fa40c9f2b176fde3f99a96f6eb952f590f9d694
treeb1d5119d313da96bd74f11c7741247741ad89a6c
parenta789f400022f4941e00142d2299e2ca0df695c63
General clean up of error handling in llvm-objdump to remove its use of report_fatal_error().
No real functional change with this commit.

The problem with report_fatal_error() is it does not include the tool name
and the file name the for which the error message was generated.

Uses of report_fatal_error() were change to report_error() or error()
to get a better error and to make the code smaller and cleaner.

Also changed things like error(errorToErrorCode(SOrErr.takeError())) to
use report_error() with a file name and the llvm::Error (as well as the
ArchitectureName if available) so the error message is printed.

llvm-svn: 287163
llvm/test/tools/llvm-objdump/X86/malformed-machos.test
llvm/tools/llvm-objdump/llvm-objdump.cpp
llvm/tools/llvm-objdump/llvm-objdump.h