From: Chris Lattner Date: Thu, 5 Mar 2009 06:51:42 +0000 (+0000) Subject: indicate what the program args line is. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=fcba7cd630f0d974ae5ade4c1e74d6fc55e8764e;p=oota-llvm.git 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 f4fb20eb0e1..0a514045855 100644 --- a/lib/Support/PrettyStackTrace.cpp +++ b/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 +} +