commit | 65f57c233cd4499e2e8b52a503201e64edfd6a9e | [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 | 6ca5f9360ce657c1ab382605536751d33c1d138a [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; }