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 | b0ad08b39adceb677fb22d15d684fa1e9d30a3d7 (patch) | |
tree | 44b61c034064033662015c1cf7b1defb6845a58a /llvm/lib/Support/CommandLine.cpp | |
parent | a754c40390d8fa019e1c4aabf16c5fd368041b1f (diff) | |
download | bcm5719-llvm-b0ad08b39adceb677fb22d15d684fa1e9d30a3d7.tar.gz bcm5719-llvm-b0ad08b39adceb677fb22d15d684fa1e9d30a3d7.zip |
Tweak --version to include the date and time.
llvm-svn: 61378
Diffstat (limited to 'llvm/lib/Support/CommandLine.cpp')
-rw-r--r-- | llvm/lib/Support/CommandLine.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/CommandLine.cpp b/llvm/lib/Support/CommandLine.cpp index 3297810bce6..20c2b8e83f2 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) { |