From 9bfe32bffc0ba2d845c029ee50aaf6d8521432f0 Mon Sep 17 00:00:00 2001 From: Akash Levy Date: Wed, 24 Jun 2026 17:21:38 -0700 Subject: [PATCH] Reduce port resize to warning --- passes/hierarchy/hierarchy.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/passes/hierarchy/hierarchy.cc b/passes/hierarchy/hierarchy.cc index 4077edae8..ad348a028 100644 --- a/passes/hierarchy/hierarchy.cc +++ b/passes/hierarchy/hierarchy.cc @@ -1524,7 +1524,7 @@ struct HierarchyPass : public Pass { } if (!conn.second.is_fully_const() || !w->port_input || w->port_output) - log_warning("Resizing cell port %s.%s.%s from %d bits to %d bits.\n", module, cell, + log("Resizing cell port %s.%s.%s from %d bits to %d bits.\n", module, cell, conn.first.unescape(), GetSize(conn.second), GetSize(sig)); cell->setPort(conn.first, sig); }