Reformat verbose and stack trace printouts for response-files.

This commit is contained in:
Austin Belknap
2018-05-23 11:05:20 -07:00
parent 2a30e25504
commit 3fe62b94e7
3 changed files with 11 additions and 6 deletions

View File

@@ -355,9 +355,10 @@ void Job::printCommandLine(raw_ostream &os, StringRef Terminator) const {
os << ' ';
if (hasResponseFile()) {
printArguments(os, {ResponseFileArg});
} else {
printArguments(os, Arguments);
os << " # ";
}
printArguments(os, Arguments);
os << Terminator;
}