commit | f8b81bfe608d09be3cbe7d58718052cd6fa4355c | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Wed Jul 15 16:35:29 2009 +0000 |
committer | Dan Gohman <gohman@apple.com> | Wed Jul 15 16:35:29 2009 +0000 |
tree | af96a9f73e7b0060483af26b6f3e1a6210677b67 | |
parent | 843796c2bc241b502735a62b8590d07ff74b8415 [diff] [blame] |
Use errs() instead of std::cerr. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75791 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/bugpoint/FindBugs.cpp b/tools/bugpoint/FindBugs.cpp index e42cce4..a28c1b6 100644 --- a/tools/bugpoint/FindBugs.cpp +++ b/tools/bugpoint/FindBugs.cpp
@@ -97,7 +97,7 @@ std::cout << "\n*** diff'd output matches!\n"; } } catch (ToolExecutionError &TEE) { - std::cerr << TEE.what(); + errs() << TEE.what(); debugCodeGeneratorCrash(); return true; }