llvm-6502/lib/System/Win32
Michael J. Spencer 44edb0bd0c Don't cast Win32 FILETIME structs to int64. Patch by Dimitry Andric!
According to the Microsoft documentation here:
http://msdn.microsoft.com/en-us/library/ms724284%28VS.85%29.aspx

this cast used in lib/System/Win32/Path.inc:

__int64 ft = *reinterpret_cast<__int64*>(&fi.ftLastWriteTime);

should not be done.  The documentation says: "Do not cast a pointer to a
FILETIME structure to either a ULARGE_INTEGER* or __int64* value because
it can cause alignment faults on 64-bit Windows."

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112376 91177308-0d34-0410-b5e6-96231b3b80d8
2010-08-28 16:39:32 +00:00
..
Alarm.inc
DynamicLibrary.inc Remove spurious semicolon. 2010-01-14 20:19:51 +00:00
Host.inc
Memory.inc
Mutex.inc
Path.inc Don't cast Win32 FILETIME structs to int64. Patch by Dimitry Andric! 2010-08-28 16:39:32 +00:00
Process.inc
Program.inc Properly quote the quotes :) during cmdline construction on Windows. 2010-03-28 15:07:02 +00:00
RWMutex.inc
Signals.inc Convert some tab stops into spaces. 2010-07-12 08:16:59 +00:00
ThreadLocal.inc Add an erase() method to llvm::ThreadLocal. 2010-07-28 22:49:43 +00:00
TimeValue.inc
Win32.h