We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 315ebe0 commit 10b1d30Copy full SHA for 10b1d30
compiler-rt/lib/profile/GCDAProfiling.c
@@ -38,27 +38,14 @@
38
#include <unistd.h>
39
#endif
40
41
-#if defined(__FreeBSD__) && defined(__i386__)
42
-#define I386_FREEBSD 1
43
-#else
44
-#define I386_FREEBSD 0
45
-#endif
46
-
47
-#if !defined(_MSC_VER) && !I386_FREEBSD
+#if !defined(_MSC_VER)
48
#include <stdint.h>
49
50
51
#if defined(_MSC_VER)
52
typedef unsigned char uint8_t;
53
typedef unsigned int uint32_t;
54
typedef unsigned long long uint64_t;
55
-#elif I386_FREEBSD
56
-/* System headers define 'size_t' incorrectly on x64 FreeBSD (prior to
57
- * FreeBSD 10, r232261) when compiled in 32-bit mode.
58
- */
59
-typedef unsigned char uint8_t;
60
-typedef unsigned int uint32_t;
61
-typedef unsigned long long uint64_t;
62
63
64
#include "InstrProfiling.h"
0 commit comments