From eed80e23751ecc50c1fa5604f67be4b826d5b417 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Fri, 23 Jul 2004 01:30:49 +0000 Subject: * 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 --- tools/bugpoint/ExecutionDriver.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/bugpoint/ExecutionDriver.cpp') diff --git a/tools/bugpoint/ExecutionDriver.cpp b/tools/bugpoint/ExecutionDriver.cpp index 12ca123402..7d6c4aaaae 100644 --- a/tools/bugpoint/ExecutionDriver.cpp +++ b/tools/bugpoint/ExecutionDriver.cpp @@ -42,7 +42,7 @@ namespace { cl::opt CheckProgramExitCode("check-exit-code", - cl::desc("Assume nonzero exit code is failure (default on)"), + cl::desc("Assume nonzero exit code is failure (default on)"), cl::init(true)); cl::opt @@ -279,7 +279,7 @@ bool BugDriver::diffProgram(const std::string &BytecodeFile, bool FilesDifferent = false; if (DiffFiles(ReferenceOutputFile, Output, &Error)) { if (!Error.empty()) { - std::cerr << "While diffing output: " << Error << "\n"; + std::cerr << "While diffing output: " << Error << '\n'; exit(1); } FilesDifferent = true; -- cgit v1.2.3