[asan] partial fix for windows build

llvm-svn: 157748
This commit is contained in:
Kostya Serebryany 2012-05-31 15:44:05 +00:00
parent 1d35d155fd
commit f8c5a5bcbc
1 changed files with 0 additions and 13 deletions

View File

@ -22,20 +22,7 @@
#endif
#if defined(_WIN32)
# if defined(__clang__)
typedef int sptr;
typedef unsigned int uptr;
# endif
// There's no <stdint.h> in Visual Studio 9, so we have to define [u]int*_t.
typedef unsigned __int8 u8;
typedef unsigned __int16 u16;
typedef unsigned __int32 u32;
typedef unsigned __int64 u64;
typedef __int8 s8;
typedef __int16 int16_t;
typedef __int32 s32;
typedef __int64 s64;
typedef unsigned long DWORD; // NOLINT
extern "C" void* _ReturnAddress(void);