From 1f33f8e4cc90c62a2f311a0d506c2fb43c4cbdac Mon Sep 17 00:00:00 2001 From: Steve Naroff Date: Tue, 23 Dec 2008 18:41:47 +0000 Subject: [PATCH] Tweak --version to include the date and time. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61378 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/CommandLine.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Support/CommandLine.cpp b/lib/Support/CommandLine.cpp index 3297810bce6..20c2b8e83f2 100644 --- a/lib/Support/CommandLine.cpp +++ b/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) { -- 2.34.1