aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDuraid Madina <duraid@octopus.com.au>2005-05-16 06:59:53 +0000
committerDuraid Madina <duraid@octopus.com.au>2005-05-16 06:59:53 +0000
commit3dbbc88f52d7d428e07a078d71f03ccda734443c (patch)
tree663b254d0828486c4c78d71b8659b839561a5893
parenta3ea6446dacfb6f6ab18f69f636d9e9865b0e2ad (diff)
downloadllvm-3dbbc88f52d7d428e07a078d71f03ccda734443c.zip
llvm-3dbbc88f52d7d428e07a078d71f03ccda734443c.tar.gz
llvm-3dbbc88f52d7d428e07a078d71f03ccda734443c.tar.bz2
comment the hpux bit
llvm-svn: 22081
-rw-r--r--llvm/lib/System/Unix/TimeValue.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/System/Unix/TimeValue.inc b/llvm/lib/System/Unix/TimeValue.inc
index 1df9e3b..8c8dfcc 100644
--- a/llvm/lib/System/Unix/TimeValue.inc
+++ b/llvm/lib/System/Unix/TimeValue.inc
@@ -26,6 +26,7 @@ std::string TimeValue::toString() const {
time_t ourTime = time_t(this->toEpochTime());
#ifdef __hpux
+// note that the following line needs -D_REENTRANT on HP-UX to be picked up
asctime_r(localtime(&ourTime), buffer);
#else
::asctime_r(::localtime(&ourTime), buffer);