forked from OSchip/llvm-project
WinCOFFObjectWriter.cpp: Appease a warning in checking std::time_t. [-Wsign-compare]
llvm-svn: 246839
This commit is contained in:
parent
f6cef72f12
commit
c95358b1ea
|
@ -1016,7 +1016,7 @@ void WinCOFFObjectWriter::writeObject(MCAssembler &Asm,
|
||||||
// MS LINK expects to be able to use this timestamp to implement their
|
// MS LINK expects to be able to use this timestamp to implement their
|
||||||
// /INCREMENTAL feature.
|
// /INCREMENTAL feature.
|
||||||
std::time_t Now = time(nullptr);
|
std::time_t Now = time(nullptr);
|
||||||
if (Now < 0 || Now > UINT32_MAX)
|
if (Now < 0 || (unsigned long)Now > UINT32_MAX)
|
||||||
Now = UINT32_MAX;
|
Now = UINT32_MAX;
|
||||||
Header.TimeDateStamp = Now;
|
Header.TimeDateStamp = Now;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue