[llvm-objdump] Use stderr and not stdout for fatal errors.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256423 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Davide Italiano 2015-12-25 18:16:45 +00:00
parent 041d7c3b77
commit 8e798f8001

View File

@ -247,8 +247,8 @@ void llvm::error(std::error_code EC) {
if (!EC)
return;
outs() << ToolName << ": error reading file: " << EC.message() << ".\n";
outs().flush();
errs() << ToolName << ": error reading file: " << EC.message() << ".\n";
errs().flush();
exit(1);
}