From f6d0ce49a30c2b40d69369cd799f76f95c052b0e Mon Sep 17 00:00:00 2001 From: Vedant Kumar Date: Thu, 14 Dec 2017 18:43:14 +0000 Subject: [profile] Port the runtime to Solaris This includes a few nice bits of refactoring (e.g splitting out the exclusive locking code into a common utility). Patch by Rainer Orth! Differential Revision: https://reviews.llvm.org/D40944 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@320726 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/profile/WindowsMMap.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/profile/WindowsMMap.c') diff --git a/lib/profile/WindowsMMap.c b/lib/profile/WindowsMMap.c index 0c534710b..dc87a888a 100644 --- a/lib/profile/WindowsMMap.c +++ b/lib/profile/WindowsMMap.c @@ -18,11 +18,12 @@ #if defined(_WIN32) #include "WindowsMMap.h" -#include "InstrProfiling.h" #define WIN32_LEAN_AND_MEAN #include +#include "InstrProfiling.h" + #ifdef __USE_FILE_OFFSET64 # define DWORD_HI(x) (x >> 32) # define DWORD_LO(x) ((x) & 0xffffffff) -- cgit v1.2.3