[llvm-commits] [llvm] r61378 - /llvm/trunk/lib/Support/CommandLine.cpp

Steve Naroff snaroff at apple.com
Tue Dec 23 10:41:49 PST 2008


Author: snaroff
Date: Tue Dec 23 12:41:47 2008
New Revision: 61378

URL: http://llvm.org/viewvc/llvm-project?rev=61378&view=rev
Log:
Tweak --version to include the date and time.

Modified:
    llvm/trunk/lib/Support/CommandLine.cpp

Modified: llvm/trunk/lib/Support/CommandLine.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/CommandLine.cpp?rev=61378&r1=61377&r2=61378&view=diff

==============================================================================
--- llvm/trunk/lib/Support/CommandLine.cpp (original)
+++ llvm/trunk/lib/Support/CommandLine.cpp Tue Dec 23 12:41:47 2008
@@ -1095,6 +1095,7 @@
         cout << " with assertions";
 #endif
         cout << ".\n";
+        cout << "  Built " << __DATE__ << "(" << __TIME__ << ").\n";
   }
   void operator=(bool OptionWasSpecified) {
     if (OptionWasSpecified) {





More information about the llvm-commits mailing list