diff options
author | Chris Lattner <sabre@nondot.org> | 2002-09-16 20:44:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-09-16 20:44:19 +0000 |
commit | 214bf5417562777a16a687cb095fa59d0be65285 (patch) | |
tree | 2f25220f010b553e1499564727442e4068270cb1 | |
parent | 47287be7dc5d71dec8bc47322012d2f412b4b48a (diff) |
Fix compile problem on linux. Noone should ever #include <inttypes.h>
directly. Instead, include Support/DataTypes.h
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3766 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Target/TargetData.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetData.h b/include/llvm/Target/TargetData.h index ce08aaa080..487f0362da 100644 --- a/include/llvm/Target/TargetData.h +++ b/include/llvm/Target/TargetData.h @@ -14,8 +14,8 @@ #define LLVM_TARGET_TARGETDATA_H #include "llvm/Annotation.h" +#include "Support/DataTypes.h" #include <vector> -#include <inttypes.h> class Value; class Type; class StructType; |