mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-23 14:23:41 +00:00
More cleanups related to RTLIL::IdString usage
This commit is contained in:
parent
14412e6c95
commit
b9bd22b8c8
33 changed files with 237 additions and 261 deletions
|
@ -1998,7 +1998,7 @@ void RTLIL::SigSpec::hash() const
|
|||
for (auto &v : c.data.bits)
|
||||
DJB2(that->hash_, v);
|
||||
} else {
|
||||
for (auto &v : c.wire->name)
|
||||
for (auto &v : c.wire->name.str())
|
||||
DJB2(that->hash_, v);
|
||||
DJB2(that->hash_, c.offset);
|
||||
DJB2(that->hash_, c.width);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue