aboutsummaryrefslogtreecommitdiff
path: root/tools/bugpoint/bugpoint.cpp
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2004-07-23 01:30:49 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2004-07-23 01:30:49 +0000
commiteed80e23751ecc50c1fa5604f67be4b826d5b417 (patch)
tree6bc448441067a57c159e09397a613a1b9dd9b04c /tools/bugpoint/bugpoint.cpp
parent9accb24c897879f8e0f3f8ecf3389261a7924bc6 (diff)
* Convert "\n" -> '\n'
* Print out another '\n' after printing out program execution status * Make sure code wraps at 80 cols git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15123 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/bugpoint.cpp')
-rw-r--r--tools/bugpoint/bugpoint.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bugpoint/bugpoint.cpp b/tools/bugpoint/bugpoint.cpp
index 9bf3a004be..056ff52af0 100644
--- a/tools/bugpoint/bugpoint.cpp
+++ b/tools/bugpoint/bugpoint.cpp
@@ -57,7 +57,7 @@ int main(int argc, char **argv) {
try {
return D.run();
} catch (ToolExecutionError &TEE) {
- std::cerr << "Tool execution error: " << TEE.what() << "\n";
+ std::cerr << "Tool execution error: " << TEE.what() << '\n';
return 1;
} catch (...) {
std::cerr << "Whoops, an exception leaked out of bugpoint. "