mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 08:17:40 +00:00
* 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
This commit is contained in:
@@ -42,7 +42,7 @@ namespace {
|
||||
|
||||
cl::opt<bool>
|
||||
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<std::string>
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user