Index: src/AST/Convert.cpp
===================================================================
--- src/AST/Convert.cpp	(revision e7f8119c7b8ee2a61854ccbb31648dbd9fb6b85a)
+++ src/AST/Convert.cpp	(revision 6355ba7fa56aef7fc4a20b7b34bdecc9f0057b4f)
@@ -154,7 +154,4 @@
 		auto&& attr = get<Attribute>().acceptL( node->attributes );
 		if ( inCache( node ) ) {
-			if(node->name == "tmp") {
-				std::cerr << (void*)node << "(new) in cache " << (void*)this->node << "(old)" << std::endl;
-			}
 			return nullptr;
 		}
@@ -169,7 +166,4 @@
 			Type::FuncSpecifiers( node->funcSpec.val )
 		);
-		if(node->name == "tmp") {
-			std::cerr << (void*)node << "(new) created " << (void*)decl << "(old)" << std::endl;
-		}
 		return declWithTypePostamble( decl, node );
 	}
@@ -1422,5 +1416,5 @@
 #	define GET_ACCEPT_V(child, type) \
 		getAcceptV< ast::type, decltype( old->child ) >( old->child )
-	
+
 	template<typename NewT, typename OldC>
 	std::deque< ast::ptr<NewT> > getAcceptD( OldC& old ) {
@@ -1470,18 +1464,9 @@
 
 	virtual void visit( ObjectDecl * old ) override final {
-		if( old->name == "tmp" ) {
-			std::cerr << "building parameters for" << (void*)old << std::endl;
-		}
 		auto&& type = GET_ACCEPT_1(type, Type);
 		auto&& init = GET_ACCEPT_1(init, Init);
 		auto&& bfwd = GET_ACCEPT_1(bitfieldWidth, Expr);
 		auto&& attr = GET_ACCEPT_V(attributes, Attribute);
-		if( old->name == "tmp" ) {
-			std::cerr << "checking cache for " << (void*)old << std::endl;
-		}
 		if ( inCache( old ) ) {
-			if( old->name == "tmp" ) {
-				std::cerr << (void*)old << "(old) in cache " << (void*)this->node << "(new)" << std::endl;
-			}
 			return;
 		}
@@ -1498,7 +1483,4 @@
 		);
 		cache.emplace(old, decl);
-		if( old->name == "tmp" ) {
-			std::cerr << (void*)old << "(old) added to cache with " << (void*)decl << "(new)" << std::endl;
-		}
 		assert(cache.find( old ) != cache.end());
 		decl->scopeLevel = old->scopeLevel;
@@ -1509,8 +1491,4 @@
 
 		this->node = decl;
-
-		if( old->name == "tmp" ) {
-			std::cerr << (void*)old << "(old) created " << (void*)this->node << "(new)" << std::endl;
-		}
 	}
 
