mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-23 20:58:55 +00:00
Cleanup
This commit is contained in:
parent
6b403d19c7
commit
5a33f089bf
4 changed files with 6 additions and 12 deletions
|
@ -36,7 +36,6 @@ struct TimingInfo
|
|||
explicit NameBit(const RTLIL::SigBit &b) : name(b.wire->name), offset(b.offset) {}
|
||||
bool operator==(const NameBit& nb) const { return nb.name == name && nb.offset == offset; }
|
||||
bool operator!=(const NameBit& nb) const { return !operator==(nb); }
|
||||
bool operator<(const NameBit& nb) const { return nb.name < name && nb.offset < offset; }
|
||||
unsigned int hash() const { return mkhash_add(name.hash(), offset); }
|
||||
};
|
||||
struct BitBit
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue