summaryrefslogtreecommitdiff
path: root/kernel/rtlil.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r--kernel/rtlil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h
index bb9e85d9..739b701f 100644
--- a/kernel/rtlil.h
+++ b/kernel/rtlil.h
@@ -463,7 +463,7 @@ struct RTLIL::Const
inline int size() const { return bits.size(); }
inline unsigned int hash() const {
- unsigned int h = 5381;
+ unsigned int h = mkhash_init;
for (auto b : bits)
mkhash(h, b);
return h;