diff options
| author | Justin Bogner <mail@justinbogner.com> | 2014-01-07 01:46:49 +0000 |
|---|---|---|
| committer | Justin Bogner <mail@justinbogner.com> | 2014-01-07 01:46:49 +0000 |
| commit | 3e69e13092698b4426c2218e8be526e8066af131 (patch) | |
| tree | c836eea7472f378c234985d883903ddcbbedf949 | |
| parent | 1917588d0cad80c1c22f3256208ad8cca38c1db4 (diff) | |
| download | bcm5719-llvm-3e69e13092698b4426c2218e8be526e8066af131.tar.gz bcm5719-llvm-3e69e13092698b4426c2218e8be526e8066af131.zip | |
Revert "Only include inttypes.h on platforms for which PRIu64 isn't in stdint.h"
This reverts commit e7778e08878d0c61903205428eeb131db9d11b3c.
llvm-svn: 198657
| -rw-r--r-- | compiler-rt/lib/profile/PGOProfiling.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/compiler-rt/lib/profile/PGOProfiling.c b/compiler-rt/lib/profile/PGOProfiling.c index 737ba79a7de..6c728dd124d 100644 --- a/compiler-rt/lib/profile/PGOProfiling.c +++ b/compiler-rt/lib/profile/PGOProfiling.c @@ -7,13 +7,10 @@ |* \*===----------------------------------------------------------------------===*/ +#include <inttypes.h> #include <stdio.h> #include <stdlib.h> -#if !defined(__APPLE__) -#include <inttypes.h> -#endif - #ifndef _MSC_VER #include <stdint.h> #else |

