mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 14:13:23 +00:00
hashlib: legacy mkhash_add -> djb2_add
This commit is contained in:
parent
4e29ec1854
commit
1df8a3e64b
2 changed files with 2 additions and 2 deletions
|
@ -1862,7 +1862,7 @@ inline Hasher RTLIL::SigBit::hash_eat(Hasher h) const {
|
|||
inline Hasher RTLIL::SigBit::hash_top() const {
|
||||
Hasher h;
|
||||
if (wire) {
|
||||
h.force(hashlib::legacy::mkhash_add(wire->name.index_, offset));
|
||||
h.force(hashlib::legacy::djb2_add(wire->name.index_, offset));
|
||||
return h;
|
||||
}
|
||||
h.force(data);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue