Skip to content

Commit 3dbbc88

Browse files
comment the hpux bit
llvm-svn: 22081
1 parent a3ea644 commit 3dbbc88

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

llvm/lib/System/Unix/TimeValue.inc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ std::string TimeValue::toString() const {
2626

2727
time_t ourTime = time_t(this->toEpochTime());
2828
#ifdef __hpux
29+
// note that the following line needs -D_REENTRANT on HP-UX to be picked up
2930
asctime_r(localtime(&ourTime), buffer);
3031
#else
3132
::asctime_r(::localtime(&ourTime), buffer);

0 commit comments

Comments
 (0)