X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FSystem%2FTimeValue.cpp;h=cf4984cc4d1b36b44ff5ded56fc77ba423f3bc1b;hb=9ac18d562d9839e881165e8f8a25d87b9f8279e8;hp=15337244c563bb11780e356fdffe8ea751e28c02;hpb=44cbf36c38b41028b7d25ca3032f14597897f4c9;p=oota-llvm.git diff --git a/lib/System/TimeValue.cpp b/lib/System/TimeValue.cpp index 15337244c56..cf4984cc4d1 100644 --- a/lib/System/TimeValue.cpp +++ b/lib/System/TimeValue.cpp @@ -1,17 +1,18 @@ //===-- TimeValue.cpp - Implement OS TimeValue Concept ----------*- C++ -*-===// -// +// // The LLVM Compiler Infrastructure // -// This file was developed by Reid Spencer and is distributed under the -// University of Illinois Open Source License. See LICENSE.TXT for details. -// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// //===----------------------------------------------------------------------===// // // This file implements the operating system TimeValue concept. // //===----------------------------------------------------------------------===// -#include +#include "llvm/System/TimeValue.h" +#include "llvm/Config/config.h" namespace llvm { using namespace sys; @@ -48,6 +49,10 @@ TimeValue::normalize( void ) { } /// Include the platform specific portion of TimeValue class -#include "platform/TimeValue.cpp" +#ifdef LLVM_ON_UNIX +#include "Unix/TimeValue.inc" +#endif +#ifdef LLVM_ON_WIN32 +#include "Win32/TimeValue.inc" +#endif -// vim: sw=2 smartindent smarttab tw=80 autoindent expandtab