diff options
author | Steve Naroff <snaroff@apple.com> | 2008-12-23 18:41:47 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2008-12-23 18:41:47 +0000 |
commit | 1f33f8e4cc90c62a2f311a0d506c2fb43c4cbdac (patch) | |
tree | 2ee032c368a2dc77b0acb543f1e06b9b277a3bc5 /lib/Support/CommandLine.cpp | |
parent | c9a5b9e38b442c2ae6b115213a07df3fcd14708d (diff) |
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
Diffstat (limited to 'lib/Support/CommandLine.cpp')
-rw-r--r-- | lib/Support/CommandLine.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Support/CommandLine.cpp b/lib/Support/CommandLine.cpp index 3297810bce..20c2b8e83f 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) { |