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 | 080d98d3b2c40b19de5f6728e18f59b8de295223 (patch) | |
tree | e11bd60db04668610777343f0ce0e4b8f576a3d2 /llvm/runtime/libprofile/PathProfiling.c | |
parent | eeb2cbce806da1919ea22edf93cfa9ff91ceafb7 (diff) | |
download | bcm5719-llvm-080d98d3b2c40b19de5f6728e18f59b8de295223.tar.gz bcm5719-llvm-080d98d3b2c40b19de5f6728e18f59b8de295223.zip |
win32: Include DataTypes.h instead of stdint.h to try and fix a Win32 build
issue.
llvm-svn: 130530
Diffstat (limited to 'llvm/runtime/libprofile/PathProfiling.c')
-rw-r--r-- | llvm/runtime/libprofile/PathProfiling.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/runtime/libprofile/PathProfiling.c b/llvm/runtime/libprofile/PathProfiling.c index 9003c3f6326..d2dec02fdcf 100644 --- a/llvm/runtime/libprofile/PathProfiling.c +++ b/llvm/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 |