mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 09:34:09 +00:00
techmap: Replace naughty const_cast<>()
s.
Co-Authored-By: Eddie Hung <eddie@fpgeh.com>
This commit is contained in:
parent
97fd304cbe
commit
e173291649
|
@ -413,8 +413,10 @@ struct TechmapWorker
|
||||||
if (autopurge) {
|
if (autopurge) {
|
||||||
autopurge_ports.push_back(conn.first);
|
autopurge_ports.push_back(conn.first);
|
||||||
} else {
|
} else {
|
||||||
apply_prefix(cell->name, const_cast<RTLIL::SigSpec&>(conn.second), module);
|
RTLIL::SigSpec new_conn = conn.second;
|
||||||
port_signal_map.apply(const_cast<RTLIL::SigSpec&>(conn.second));
|
apply_prefix(cell->name, new_conn, module);
|
||||||
|
port_signal_map.apply(new_conn);
|
||||||
|
c->setPort(conn.first, std::move(new_conn));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue