* Trim #includes

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1640 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2002-02-03 07:20:47 +00:00
parent f3aaadf482
commit 871b1939b5
+6 -3
View File
@@ -13,8 +13,10 @@
#ifndef LLVM_TARGET_TARGETDATA_H
#define LLVM_TARGET_TARGETDATA_H
#include "llvm/Type.h"
#include "llvm/Annotation.h"
#include <vector>
class Value;
class Type;
class StructType;
class StructLayout;
@@ -64,7 +66,8 @@ public:
const std::vector<Value*> &Indices) const;
inline const StructLayout *getStructLayout(const StructType *Ty) const {
return (const StructLayout*)((const Type*)Ty)->getOrCreateAnnotation(AID);
return (const StructLayout*)
((const Annotable*)Ty)->getOrCreateAnnotation(AID);
}
};