From fad356c4ac40c610761d38476f91efc0076e8e41 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Fri, 20 Nov 2015 18:11:50 +0000 Subject: [PATCH] Speculativley try to fix FreeBSD buildbots, which apparently cannot use stdint.h llvm-svn: 253681 --- compiler-rt/lib/profile/InstrProfiling.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler-rt/lib/profile/InstrProfiling.h b/compiler-rt/lib/profile/InstrProfiling.h index 99c22aff6a86..e023022f4f76 100644 --- a/compiler-rt/lib/profile/InstrProfiling.h +++ b/compiler-rt/lib/profile/InstrProfiling.h @@ -22,6 +22,8 @@ * FreeBSD 10, r232261) when compiled in 32-bit mode. */ #define PRIu64 "llu" +typedef unsigned char uint8_t; +typedef unsigned short uint16_t; typedef unsigned int uint32_t; typedef unsigned long long uint64_t; typedef uint32_t uintptr_t;