PGO: Fix obviously wrong typedefs for MS

llvm-svn: 204267
This commit is contained in:
Duncan P. N. Exon Smith 2014-03-19 22:10:24 +00:00
parent 763699760e
commit 61c97335c6
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@
#if defined(_MSC_VER)
typedef unsigned int uint32_t;
typedef unsigned int uint64_t;
typedef unsigned long long uint64_t;
#elif I386_FREEBSD
/* System headers define 'size_t' incorrectly on x64 FreeBSD (prior to
* FreeBSD 10, r232261) when compiled in 32-bit mode.

View File

@ -22,7 +22,7 @@
#if defined(_MSC_VER)
typedef unsigned int uint32_t;
typedef unsigned int uint64_t;
typedef unsigned long long uint64_t;
#elif I386_FREEBSD
/* System headers define 'size_t' incorrectly on x64 FreeBSD (prior to
* FreeBSD 10, r232261) when compiled in 32-bit mode.