From b978a93635b584db380274d7c8963c73989944a1 Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Fri, 12 Mar 2021 15:10:12 -0800 Subject: [PATCH] [gcov] Delete ancient MSVC workaround --- compiler-rt/lib/profile/GCDAProfiling.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/compiler-rt/lib/profile/GCDAProfiling.c b/compiler-rt/lib/profile/GCDAProfiling.c index a7f6f3ff54e1d..649c73f9d3612 100644 --- a/compiler-rt/lib/profile/GCDAProfiling.c +++ b/compiler-rt/lib/profile/GCDAProfiling.c @@ -23,6 +23,7 @@ #include #include +#include #include #include #include @@ -38,16 +39,6 @@ #include #endif -#if !defined(_MSC_VER) -#include -#endif - -#if defined(_MSC_VER) -typedef unsigned char uint8_t; -typedef unsigned int uint32_t; -typedef unsigned long long uint64_t; -#endif - #include "InstrProfiling.h" #include "InstrProfilingUtil.h"