mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-29 07:27:58 +00:00
More bugfixes related to new RTLIL::IdString
This commit is contained in:
parent
08392aad8f
commit
768eb846c4
10 changed files with 60 additions and 44 deletions
|
@ -700,7 +700,7 @@ struct ExtractPass : public Pass {
|
|||
log("\nFrequent SubCircuit with %d nodes and %d matches:\n", int(result.nodes.size()), result.totalMatchesAfterLimits);
|
||||
log(" primary match in %s:", id2cstr(haystack_map.at(result.graphId)->name));
|
||||
for (auto &node : result.nodes)
|
||||
log(" %s", id2cstr(node.nodeId));
|
||||
log(" %s", RTLIL::unescape_id(node.nodeId).c_str());
|
||||
log("\n");
|
||||
for (auto &it : result.matchesPerGraph)
|
||||
log(" matches in %s: %d\n", id2cstr(haystack_map.at(it.first)->name), it.second);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue