From c35abc2393ef238908d65a4728cbdb764ed2d214 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 13 Nov 2005 03:26:33 +0000 Subject: [PATCH] Add some dummy method impls git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24345 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Type.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp index 236ecfb6e10..ba8830912ca 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. // -- 2.34.1