mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-03 19:15:30 +00:00
[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:
parent
041d7c3b77
commit
8e798f8001
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user