aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/DerivedTypes.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-01-09 05:45:58 +0000
committerChris Lattner <sabre@nondot.org>2004-01-09 05:45:58 +0000
commitf173842577ca243413294cdf074a7c9e31163688 (patch)
treec4e06094e3daa1a54f076a2a3fc5009dbf284529 /include/llvm/DerivedTypes.h
parent63a917bbc245accd0e020c2f8703f27f37a8579d (diff)
downloadexternal_llvm-f173842577ca243413294cdf074a7c9e31163688.zip
external_llvm-f173842577ca243413294cdf074a7c9e31163688.tar.gz
external_llvm-f173842577ca243413294cdf074a7c9e31163688.tar.bz2
Remove an obsolete method, including its _long_ out of date comment.
This is an incremental step towards fixing PR82 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10723 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/DerivedTypes.h')
-rw-r--r--include/llvm/DerivedTypes.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/include/llvm/DerivedTypes.h b/include/llvm/DerivedTypes.h
index c0cd601..05b065b 100644
--- a/include/llvm/DerivedTypes.h
+++ b/include/llvm/DerivedTypes.h
@@ -198,12 +198,6 @@ public:
virtual const Type *getTypeAtIndex(const Value *V) const = 0;
virtual bool indexValid(const Value *V) const = 0;
- // getIndexType - Return the type required of indices for this composite.
- // For structures, this is ubyte, for arrays, this is uint
- //
- virtual const Type *getIndexType() const = 0;
-
-
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const CompositeType *T) { return true; }
static inline bool classof(const Type *T) {
@@ -258,11 +252,6 @@ public:
virtual const Type *getTypeAtIndex(const Value *V) const ;
virtual bool indexValid(const Value *V) const;
- // getIndexType - Return the type required of indices for this composite.
- // For structures, this is ubyte, for arrays, this is uint
- //
- virtual const Type *getIndexType() const { return Type::UByteTy; }
-
// Implement the AbstractTypeUser interface.
virtual void refineAbstractType(const DerivedType *OldTy, const Type *NewTy);
virtual void typeBecameConcrete(const DerivedType *AbsTy);
@@ -312,11 +301,6 @@ public:
return V->getType()->isInteger();
}
- // getIndexType() - Return the type required of indices for this composite.
- // For structures, this is ubyte, for arrays, this is uint
- //
- virtual const Type *getIndexType() const { return Type::LongTy; }
-
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const SequentialType *T) { return true; }
static inline bool classof(const Type *T) {