aboutsummaryrefslogtreecommitdiffstats
path: root/passes
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2023-01-23 11:28:16 +0100
committermyrtle <gatecat@ds0.me>2023-01-23 13:54:07 +0100
commitbfacaddca8a2e113e4bc3d6177612ccdba1555c8 (patch)
tree3deebc4f5d7f0836be921b6b24b7d0732b6d0d24 /passes
parent611f71c67020eb501cedd24b2b10751fc1188f5e (diff)
downloadyosys-bfacaddca8a2e113e4bc3d6177612ccdba1555c8.tar.gz
yosys-bfacaddca8a2e113e4bc3d6177612ccdba1555c8.tar.bz2
yosys-bfacaddca8a2e113e4bc3d6177612ccdba1555c8.zip
show: Remove left-in debug log_warning
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'passes')
-rw-r--r--passes/cmds/show.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/passes/cmds/show.cc b/passes/cmds/show.cc
index b186e5db2..a7c77f96f 100644
--- a/passes/cmds/show.cc
+++ b/passes/cmds/show.cc
@@ -296,7 +296,6 @@ struct ShowWorker
code += stringf("x%d [ shape=record, style=rounded, label=\"%s\" ];\n", idx, label_string.c_str());
if (!port.empty()) {
currentColor = xorshift32(currentColor);
- log_warning("WIDTHLABEL %s %d\n", log_signal(sig), GetSize(sig));
if (driver)
code += stringf("%s:e -> x%d:w [arrowhead=odiamond, arrowtail=odiamond, dir=both, %s, %s];\n", port.c_str(), idx, nextColor(sig).c_str(), widthLabel(sig.size()).c_str());
else