From: Chris Lattner Date: Sun, 13 Nov 2005 03:26:33 +0000 (+0000) Subject: Add some dummy method impls X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=c35abc2393ef238908d65a4728cbdb764ed2d214;p=oota-llvm.git Add some dummy method impls git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24345 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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. //