mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Aliased flag options should be directed to stdout, not stderr to be consistent. Patch by Julien Lerouge.
llvm-svn: 132931
This commit is contained in:
parent
a3941782e9
commit
4fd206b70b
@ -911,8 +911,8 @@ size_t alias::getOptionWidth() const {
|
||||
// Print out the option for the alias.
|
||||
void alias::printOptionInfo(size_t GlobalWidth) const {
|
||||
size_t L = std::strlen(ArgStr);
|
||||
errs() << " -" << ArgStr;
|
||||
errs().indent(GlobalWidth-L-6) << " - " << HelpStr << "\n";
|
||||
outs() << " -" << ArgStr;
|
||||
outs().indent(GlobalWidth-L-6) << " - " << HelpStr << "\n";
|
||||
}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
Loading…
Reference in New Issue
Block a user