mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Print a space after the colon.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104279 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a552878508
commit
dcc44670f4
@ -39,7 +39,7 @@ namespace {
|
||||
}
|
||||
|
||||
void PrintCommand (const std::string& Cmd, const StrVector& Args) {
|
||||
errs() << Cmd << " ";
|
||||
errs() << Cmd << ' ';
|
||||
std::for_each(Args.begin(), Args.end(), &PrintString);
|
||||
errs() << '\n';
|
||||
}
|
||||
@ -89,7 +89,7 @@ namespace {
|
||||
int ret = sys::Program::ExecuteAndWait(prog, &argv[0], 0, &redirects[0]);
|
||||
|
||||
if (IsSegmentationFault(ret)) {
|
||||
errs() << "Segmentation fault:";
|
||||
errs() << "Segmentation fault: ";
|
||||
PrintCommand(name, args);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user