summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-05-03 17:10:20 +0000
committerChris Lattner <sabre@nondot.org>2007-05-03 17:10:20 +0000
commita6bb4a9e93522f5e90604da9c39deea7d997e9f7 (patch)
treebe6afa254aad6a83b2608c1c1c6fad30adbafc49 /include
parent49e1580214cd0b9e8d00b29f11f62fe9070a2a9c (diff)
downloadllvm-a6bb4a9e93522f5e90604da9c39deea7d997e9f7.tar.gz
llvm-a6bb4a9e93522f5e90604da9c39deea7d997e9f7.tar.bz2
llvm-a6bb4a9e93522f5e90604da9c39deea7d997e9f7.tar.xz
remove two useless functions. Just inherit Type's implementation instead.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36677 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/DerivedTypes.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/llvm/DerivedTypes.h b/include/llvm/DerivedTypes.h
index 6013c265f0..af58827c88 100644
--- a/include/llvm/DerivedTypes.h
+++ b/include/llvm/DerivedTypes.h
@@ -407,14 +407,6 @@ public:
return new OpaqueType(); // All opaque types are distinct
}
- // Implement the AbstractTypeUser interface.
- virtual void refineAbstractType(const DerivedType *OldTy, const Type *NewTy) {
- abort(); // FIXME: this is not really an AbstractTypeUser!
- }
- virtual void typeBecameConcrete(const DerivedType *AbsTy) {
- abort(); // FIXME: this is not really an AbstractTypeUser!
- }
-
// Implement support for type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const OpaqueType *T) { return true; }
static inline bool classof(const Type *T) {