indicate what the program args line is.

llvm-svn: 66144
This commit is contained in:
Chris Lattner 2009-03-05 06:51:42 +00:00
parent 0c33d436b3
commit 2674eb4bd1
1 changed files with 3 additions and 1 deletions

View File

@ -62,8 +62,10 @@ void PrettyStackTraceString::print(raw_ostream &OS) const {
}
void PrettyStackTraceProgram::print(raw_ostream &OS) const {
OS << "Program arguments: ";
// Print the argument list.
for (unsigned i = 0, e = ArgC; i != e; ++i)
OS << ArgV[i] << ' ';
OS << '\n';
}
}