diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-04-29 18:58:57 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-04-29 18:58:57 +0000 |
commit | 8ddf6f295238b546656f85fc14bccc1a322359de (patch) | |
tree | 0f3d4df39d5388bb7b59724c1c6bccf999377d58 /runtime | |
parent | c69c4a839f12bbf8869b3ae258b76411621df2c0 (diff) | |
download | external_llvm-8ddf6f295238b546656f85fc14bccc1a322359de.zip external_llvm-8ddf6f295238b546656f85fc14bccc1a322359de.tar.gz external_llvm-8ddf6f295238b546656f85fc14bccc1a322359de.tar.bz2 |
win32: Include DataTypes.h instead of stdint.h to try and fix a Win32 build
issue.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130530 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/libprofile/PathProfiling.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/libprofile/PathProfiling.c b/runtime/libprofile/PathProfiling.c index 9003c3f..d2dec02 100644 --- a/runtime/libprofile/PathProfiling.c +++ b/runtime/libprofile/PathProfiling.c @@ -15,6 +15,7 @@ #include "Profiling.h" #include "llvm/Analysis/ProfileInfoTypes.h" +#include "llvm/Support/DataTypes.h" #include <sys/types.h> #if !defined(_MSC_VER) && !defined(__MINGW32__) #include <unistd.h> @@ -23,7 +24,6 @@ #endif #include <string.h> #include <stdlib.h> -#include <stdint.h> #include <stdio.h> // Must use __inline in Microsoft C |