summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Support/TimeValue.cpp
diff options
context:
space:
mode:
authorChris Bieneman <beanz@apple.com>2014-08-29 01:05:12 +0000
committerChris Bieneman <beanz@apple.com>2014-08-29 01:05:12 +0000
commit5e7f44c25edb8e16e9250c51674ca9abef20048e (patch)
tree2561046d5592fe6fc09a8cd1540e8cc3cfa9de3a /llvm/lib/Support/TimeValue.cpp
parent4a9187a8105416b17349d4b589d073fe62a106eb (diff)
downloadbcm5719-llvm-5e7f44c25edb8e16e9250c51674ca9abef20048e.tar.gz
bcm5719-llvm-5e7f44c25edb8e16e9250c51674ca9abef20048e.zip
Cleaning up static initializers in TimeValue.
Code reviewed by Chandlerc llvm-svn: 216703
Diffstat (limited to 'llvm/lib/Support/TimeValue.cpp')
-rw-r--r--llvm/lib/Support/TimeValue.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/lib/Support/TimeValue.cpp b/llvm/lib/Support/TimeValue.cpp
index 4a707979420..136b93eceef 100644
--- a/llvm/lib/Support/TimeValue.cpp
+++ b/llvm/lib/Support/TimeValue.cpp
@@ -22,12 +22,6 @@ const TimeValue::SecondsType
const TimeValue::SecondsType
TimeValue::Win32ZeroTimeSeconds = -12591158400ULL;
-const TimeValue TimeValue::MinTime = TimeValue ( INT64_MIN,0 );
-const TimeValue TimeValue::MaxTime = TimeValue ( INT64_MAX,0 );
-const TimeValue TimeValue::ZeroTime = TimeValue ( 0,0 );
-const TimeValue TimeValue::PosixZeroTime = TimeValue ( PosixZeroTimeSeconds,0 );
-const TimeValue TimeValue::Win32ZeroTime = TimeValue ( Win32ZeroTimeSeconds,0 );
-
void
TimeValue::normalize( void ) {
if ( nanos_ >= NANOSECONDS_PER_SECOND ) {
OpenPOWER on IntegriCloud