From: Chris Lattner Date: Mon, 16 Sep 2002 20:44:19 +0000 (+0000) Subject: Fix compile problem on linux. Noone should ever #include X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=214bf5417562777a16a687cb095fa59d0be65285;p=oota-llvm.git Fix compile problem on linux. Noone should ever #include directly. Instead, include Support/DataTypes.h git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3766 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Target/TargetData.h b/include/llvm/Target/TargetData.h index ce08aaa080b..487f0362da4 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 -#include class Value; class Type; class StructType;