Index: src/SymTab/Autogen.cc
===================================================================
--- src/SymTab/Autogen.cc	(revision 39920986889716a2f255137c48088e8dbb2a897c)
+++ src/SymTab/Autogen.cc	(revision 66b6f662a2e12cde4f4840dee5965d87868c80c2)
@@ -10,6 +10,6 @@
 // Created On       : Thu Mar 03 15:45:56 2016
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Apr 27 14:39:06 2018
-// Update Count     : 63
+// Last Modified On : Fri Apr 14 15:03:00 2023
+// Update Count     : 64
 //
 
@@ -211,8 +211,4 @@
 	}
 
-	bool isUnnamedBitfield( const ast::ObjectDecl * obj ) {
-		return obj && obj->name.empty() && obj->bitfieldWidth;
-	}
-
 	/// inserts a forward declaration for functionDecl into declsToAdd
 	void addForwardDecl( FunctionDecl * functionDecl, std::list< Declaration * > & declsToAdd ) {
@@ -234,15 +230,4 @@
 	}
 
-	// shallow copy the pointer list for return
-	std::vector<ast::ptr<ast::TypeDecl>> getGenericParams (const ast::Type * t) {
-		if (auto structInst = dynamic_cast<const ast::StructInstType*>(t)) {
-			return structInst->base->params;
-		}
-		if (auto unionInst = dynamic_cast<const ast::UnionInstType*>(t)) {
-			return unionInst->base->params;
-		}
-		return {};
-	}
-
 	/// given type T, generate type of default ctor/dtor, i.e. function type void (*) (T *)
 	FunctionType * genDefaultType( Type * paramType, bool maybePolymorphic ) {
@@ -256,12 +241,4 @@
 		ftype->parameters.push_back( dstParam );
 		return ftype;
-	}
-
-	/// Given type T, generate type of default ctor/dtor, i.e. function type void (*) (T &).
-	ast::FunctionDecl * genDefaultFunc(const CodeLocation loc, const std::string fname, const ast::Type * paramType, bool maybePolymorphic) {
-		std::vector<ast::ptr<ast::TypeDecl>> typeParams;
-		if (maybePolymorphic) typeParams = getGenericParams(paramType);
-		auto dstParam = new ast::ObjectDecl(loc, "_dst", new ast::ReferenceType(paramType), nullptr, {}, ast::Linkage::Cforall);
-		return new ast::FunctionDecl(loc, fname, std::move(typeParams), {dstParam}, {}, new ast::CompoundStmt(loc), {}, ast::Linkage::Cforall);
 	}
 
