3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-28 03:15:50 +00:00

Update from master

This commit is contained in:
Eddie Hung 2019-05-28 09:35:45 -07:00
parent 6931a3a47d
commit 914074a07c
5 changed files with 59 additions and 64 deletions

View file

@ -42,7 +42,7 @@ struct dff_map_bit_info_t {
bool consider_wire(RTLIL::Wire *wire, std::map<RTLIL::IdString, dff_map_info_t> &dff_dq_map)
{
if (/*wire->name[0] == '$' ||*/ dff_dq_map.count(wire->name))
if (wire->name[0] == '$' || dff_dq_map.count(wire->name))
return false;
if (wire->port_input)
return false;