indicate what the program args line is.
authorChris Lattner <sabre@nondot.org>
Thu, 5 Mar 2009 06:51:42 +0000 (06:51 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 5 Mar 2009 06:51:42 +0000 (06:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66144 91177308-0d34-0410-b5e6-96231b3b80d8

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
+}
+