indicate what the program args line is.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66144 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Support/PrettyStackTrace.cpp b/lib/Support/PrettyStackTrace.cpp
index f4fb20e..0a51404 100644
--- a/lib/Support/PrettyStackTrace.cpp
+++ b/lib/Support/PrettyStackTrace.cpp
@@ -62,8 +62,10 @@
 }
 
 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
+}
+