From 950339b1b0c0834883d4bcfd637c8bdec20a7f16 Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Fri, 8 Aug 2025 17:14:31 +1200 Subject: [PATCH] simplify.cc: Drop unused debug prints At least the ones added by this PR. There are some unused debug prints that are *changed* by this PR, but I've left them. --- frontends/ast/simplify.cc | 3 --- 1 file changed, 3 deletions(-) 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)) { }