3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-05-17 23:49:29 +00:00

Fixing couple more conversion errors

This commit is contained in:
Miodrag Milanovic 2026-05-14 15:58:58 +02:00
parent 9580ebabc5
commit 4a7878b17f
5 changed files with 9 additions and 9 deletions

View file

@ -1265,7 +1265,7 @@ struct TechmapPass : public Pass {
i.second.sort(RTLIL::sort_by_id_str());
std::string maps = "";
for (auto &map : i.second)
maps += stringf(" %s", map);
maps += stringf(" %s", map.unescape());
log_debug(" %s:%s\n", i.first.unescape(), maps);
}
log_debug("\n");