From f8c5a5bcbc186eaef20058ba6a2402844d7a5706 Mon Sep 17 00:00:00 2001 From: Kostya Serebryany Date: Thu, 31 May 2012 15:44:05 +0000 Subject: [PATCH] [asan] partial fix for windows build llvm-svn: 157748 --- compiler-rt/lib/asan/asan_internal.h | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/compiler-rt/lib/asan/asan_internal.h b/compiler-rt/lib/asan/asan_internal.h index 597621e6106c..fa797275e121 100644 --- a/compiler-rt/lib/asan/asan_internal.h +++ b/compiler-rt/lib/asan/asan_internal.h @@ -22,20 +22,7 @@ #endif #if defined(_WIN32) -# if defined(__clang__) -typedef int sptr; -typedef unsigned int uptr; -# endif -// There's no 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);