indicate what the program args line is.
[oota-llvm.git] / lib / Support / PrettyStackTrace.cpp
index f4fb20eb0e15cf04562b29b90870717ff6cb7449..0a514045855860067fd8a84b7a4115d0bb8a56cc 100644 (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';
-}
\ No newline at end of file
+}
+