diff --git a/frontends/ast/simplify.cc b/frontends/ast/simplify.cc index 0a43955a2..dc2ae1b31 100644 --- a/frontends/ast/simplify.cc +++ b/frontends/ast/simplify.cc @@ -5426,7 +5426,6 @@ std::unique_ptr AstNode::eval_const_function(AstNode *fcall, bool must_ while (!block->children.empty()) { - // log("%zu left in block %p\n", block->children.size(), block.get()); auto& stmt = block->children.front(); #if 0 @@ -5435,8 +5434,6 @@ std::unique_ptr AstNode::eval_const_function(AstNode *fcall, bool must_ log("%20s %40s\n", it.first.c_str(), log_signal(it.second.val)); stmt->dumpAst(nullptr, "stmt> "); #endif - // log("A\n"); - // log("%s\n", type2str(stmt->type).c_str()); if (stmt->type == AST_WIRE) { while (stmt->simplify(true, 1, -1, false)) { }