mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
Let bugpoint display generated messages on stderr only if no interpreter was
found, this ensures that messages like "Found gcc" end up on stdout where they belong. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52235 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fbea227f41
commit
ad6996d74f
@ -164,7 +164,10 @@ bool BugDriver::initializeExecutionEnvironment() {
|
||||
Message = "Sorry, this back-end is not supported by bugpoint right now!\n";
|
||||
break;
|
||||
}
|
||||
if (!Interpreter)
|
||||
std::cerr << Message;
|
||||
else // Display informational messages on stdout instead of stderr
|
||||
std::cout << Message;
|
||||
|
||||
// Initialize auxiliary tools for debugging
|
||||
if (InterpreterSel == RunCBE) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user