[llvm-objdump] Use stderr and not stdout for fatal errors.
llvm-svn: 256423
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user