[compiler-rt] r204799 - Define uintptr_t in the profiling sources on x86_64 FreeBSD in 32-bit mode
Viktor Kutuzov
vkutuzov at accesssoftek.com
Wed Mar 26 05:00:45 PDT 2014
Author: vkutuzov
Date: Wed Mar 26 07:00:44 2014
New Revision: 204799
URL: http://llvm.org/viewvc/llvm-project?rev=204799&view=rev
Log:
Define uintptr_t in the profiling sources on x86_64 FreeBSD in 32-bit mode
Modified:
compiler-rt/trunk/lib/profile/InstrProfiling.h
Modified: compiler-rt/trunk/lib/profile/InstrProfiling.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/profile/InstrProfiling.h?rev=204799&r1=204798&r2=204799&view=diff
==============================================================================
--- compiler-rt/trunk/lib/profile/InstrProfiling.h (original)
+++ compiler-rt/trunk/lib/profile/InstrProfiling.h Wed Mar 26 07:00:44 2014
@@ -18,6 +18,7 @@
#define PRIu64 "llu"
typedef unsigned int uint32_t;
typedef unsigned long long uint64_t;
+typedef uint32_t uintptr_t;
#else /* defined(__FreeBSD__) && defined(__i386__) */
More information about the llvm-commits
mailing list