From b0ad08b39adceb677fb22d15d684fa1e9d30a3d7 Mon Sep 17 00:00:00 2001 From: Steve Naroff Date: Tue, 23 Dec 2008 18:41:47 +0000 Subject: Tweak --version to include the date and time. llvm-svn: 61378 --- llvm/lib/Support/CommandLine.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'llvm/lib/Support/CommandLine.cpp') diff --git a/llvm/lib/Support/CommandLine.cpp b/llvm/lib/Support/CommandLine.cpp index 3297810..20c2b8e 100644 --- a/llvm/lib/Support/CommandLine.cpp +++ b/llvm/lib/Support/CommandLine.cpp @@ -1095,6 +1095,7 @@ public: cout << " with assertions"; #endif cout << ".\n"; + cout << " Built " << __DATE__ << "(" << __TIME__ << ").\n"; } void operator=(bool OptionWasSpecified) { if (OptionWasSpecified) { -- cgit v1.1