Add some dummy method impls
authorChris Lattner <sabre@nondot.org>
Sun, 13 Nov 2005 03:26:33 +0000 (03:26 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 13 Nov 2005 03:26:33 +0000 (03:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24345 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Type.cpp

index 236ecfb6e109111948051199e27120223edd55d6..ba8830912cae910bdf3efbdf5bab21ba019d240d 100644 (file)
@@ -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.
 //