diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-03 18:39:40 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-03 18:39:40 +0000 |
commit | 1ad37b2b59d20e64de0ef0d79d859878e37aecf1 (patch) | |
tree | d84a13102899b839e55124f352264d68c620d262 /include | |
parent | cf21d4fe70ca2a3736a85cbfd991395747be8fa0 (diff) | |
download | external_llvm-1ad37b2b59d20e64de0ef0d79d859878e37aecf1.zip external_llvm-1ad37b2b59d20e64de0ef0d79d859878e37aecf1.tar.gz external_llvm-1ad37b2b59d20e64de0ef0d79d859878e37aecf1.tar.bz2 |
These methods are dead, remove them
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8839 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Constants.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/Constants.h b/include/llvm/Constants.h index dc6922e..c885c61 100644 --- a/include/llvm/Constants.h +++ b/include/llvm/Constants.h @@ -280,7 +280,6 @@ class ConstantArray : public Constant { ConstantArray(const ConstantArray &); // DO NOT IMPLEMENT protected: ConstantArray(const ArrayType *T, const std::vector<Constant*> &Val); - void refineAbstractType(const DerivedType *OldTy, const Type *NewTy); public: /// get() - Static factory methods - Return objects of the specified value static ConstantArray *get(const ArrayType *T, const std::vector<Constant*> &); @@ -336,7 +335,6 @@ class ConstantStruct : public Constant { ConstantStruct(const ConstantStruct &); // DO NOT IMPLEMENT protected: ConstantStruct(const StructType *T, const std::vector<Constant*> &Val); - void refineAbstractType(const DerivedType *OldTy, const Type *NewTy); public: /// get() - Static factory methods - Return objects of the specified value static ConstantStruct *get(const StructType *T, @@ -409,7 +407,6 @@ class ConstantPointerNull : public ConstantPointer { ConstantPointerNull(const ConstantPointerNull &); // DO NOT IMPLEMENT protected: ConstantPointerNull(const PointerType *T) : ConstantPointer(T) {} - void refineAbstractType(const DerivedType *OldTy, const Type *NewTy); public: @@ -494,7 +491,6 @@ protected: // GEP instruction creation ctor ConstantExpr(Constant *C, const std::vector<Constant*> &IdxList, const Type *DestTy); - void refineAbstractType(const DerivedType *OldTy, const Type *NewTy); public: // Static methods to construct a ConstantExpr of different kinds. Note that |