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 7e98d87d98
commit 982c3491ff

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';
}
}