diff --git a/llvm/lib/Support/PrettyStackTrace.cpp b/llvm/lib/Support/PrettyStackTrace.cpp index f4fb20eb0e15..0a5140458558 100644 --- a/llvm/lib/Support/PrettyStackTrace.cpp +++ b/llvm/lib/Support/PrettyStackTrace.cpp @@ -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'; -} \ No newline at end of file +} +