aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-11-13 03:26:33 +0000
committerChris Lattner <sabre@nondot.org>2005-11-13 03:26:33 +0000
commitc35abc2393ef238908d65a4728cbdb764ed2d214 (patch)
tree1f431c4f9715d91c6ce3ab57913a07386eb4fe6b
parent4de4123fb15c2ac77e1de671f0d70dd2070e272c (diff)
Add some dummy method impls
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24345 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/VMCore/Type.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp
index 236ecfb6e1..ba8830912c 100644
--- a/lib/VMCore/Type.cpp
+++ b/lib/VMCore/Type.cpp
@@ -213,6 +213,14 @@ const Type *Type::getForwardedTypeInternal() const {
return ForwardType;
}
+void Type::refineAbstractType(const DerivedType *OldTy, const Type *NewTy) {
+ abort();
+}
+void Type::typeBecameConcrete(const DerivedType *AbsTy) {
+ abort();
+}
+
+
// getTypeDescription - This is a recursive function that walks a type hierarchy
// calculating the description for a type.
//