aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorclairexen <claire@symbioticeda.com>2020-06-08 15:18:32 +0200
committerGitHub <noreply@github.com>2020-06-08 15:18:32 +0200
commit680913be851967225ec7fbfe3ca44c871e6143a0 (patch)
treeee46a09d5e0666dc3ebbe425c946b4d0584d4d3d
parent210d129d9ab0f13db179ca556a414baa119b716a (diff)
parent28b9f49c9411fdde8f9b1f5fac3f79d324676872 (diff)
downloadyosys-680913be851967225ec7fbfe3ca44c871e6143a0.tar.gz
yosys-680913be851967225ec7fbfe3ca44c871e6143a0.tar.bz2
yosys-680913be851967225ec7fbfe3ca44c871e6143a0.zip
Merge pull request #2119 from YosysHQ/mwk/fix-fsm-idstring
fsm_extract: avoid calling log_signal to determine wire name
-rw-r--r--passes/fsm/fsm_extract.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/fsm/fsm_extract.cc b/passes/fsm/fsm_extract.cc
index 3840aabc8..6f99886f0 100644
--- a/passes/fsm/fsm_extract.cc
+++ b/passes/fsm/fsm_extract.cc
@@ -394,7 +394,7 @@ static void extract_fsm(RTLIL::Wire *wire)
RTLIL::Cell *cell = module->cells_.at(cellport.first);
RTLIL::SigSpec port_sig = assign_map(cell->getPort(cellport.second));
RTLIL::SigSpec unconn_sig = port_sig.extract(ctrl_out);
- RTLIL::Wire *unconn_wire = module->addWire(stringf("$fsm_unconnect$%s$%d", log_signal(unconn_sig), autoidx++), unconn_sig.size());
+ RTLIL::Wire *unconn_wire = module->addWire(stringf("$fsm_unconnect$%d", autoidx++), unconn_sig.size());
port_sig.replace(unconn_sig, RTLIL::SigSpec(unconn_wire), &cell->connections_[cellport.second]);
}
}