From a9318db2faabf04e7783e88f1dcdbcc968221657 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Povi=C5=A1er?= Date: Mon, 29 Sep 2025 12:26:54 +0200 Subject: [PATCH] opt_hier: Adjust messages --- passes/opt/opt_hier.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/passes/opt/opt_hier.cc b/passes/opt/opt_hier.cc index 06103b4be..5c3b09b31 100644 --- a/passes/opt/opt_hier.cc +++ b/passes/opt/opt_hier.cc @@ -144,12 +144,12 @@ struct ModuleIndex { } if (nunused > 0) { - log("Disconnected %d input bits of instance '%s' of '%s' in '%s'\n", + log("Disconnected %d input bits of instance '%s' (type '%s') in '%s'\n", nunused, log_id(instantiation), log_id(instantiation->type), log_id(parent.module)); changed = true; } if (nconstants > 0) { - log("Substituting constant for %d output bits of instance '%s' of '%s' in '%s'\n", + log("Substituting constant for %d output bits of instance '%s' (type '%s') in '%s'\n", nconstants, log_id(instantiation), log_id(instantiation->type), log_id(parent.module)); changed = true; }