X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FSystem%2FTimeValue.cpp;h=64078f6f42064417b89af18311e0872a8d3d4d4e;hb=a01aade75df50eb00c5d0be03594757f9abb3709;hp=68778a5e44d97c2c1725281baea1623010d91f08;hpb=9926c3135169d3c1fa60efe731ed7aebb11f2227;p=oota-llvm.git diff --git a/lib/System/TimeValue.cpp b/lib/System/TimeValue.cpp index 68778a5e44d..64078f6f420 100644 --- a/lib/System/TimeValue.cpp +++ b/lib/System/TimeValue.cpp @@ -11,16 +11,17 @@ // //===----------------------------------------------------------------------===// -#include +#include "llvm/System/TimeValue.h" +#include "llvm/Config/config.h" namespace llvm { using namespace sys; -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 ( -946684800,0 ); -const TimeValue TimeValue::Win32ZeroTime = TimeValue ( -12591158400ULL,0 ); +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 ( -946684800,0 ); +const TimeValue TimeValue::Win32ZeroTime = TimeValue ( -12591158400ULL,0 ); void TimeValue::normalize( void ) { @@ -48,6 +49,11 @@ TimeValue::normalize( void ) { } /// Include the platform specific portion of TimeValue class -#include "platform/TimeValue.cpp" +#ifdef LLVM_ON_UNIX +#include "Unix/TimeValue.cpp" +#endif +#ifdef LLVM_ON_WIN32 +#include "Win32/TimeValue.cpp" +#endif // vim: sw=2 smartindent smarttab tw=80 autoindent expandtab