diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-12-30 18:51:24 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-12-30 18:51:24 +0100 |
commit | 06750987331a3d832ea83f2205c56612d3506332 (patch) | |
tree | 7f4593afb250d49c403f9f56e135918292686526 /kernel/rtlil.cc | |
parent | ba43cf5807dadac970ff10afed4963d1ee329217 (diff) | |
download | yosys-06750987331a3d832ea83f2205c56612d3506332.tar.gz yosys-06750987331a3d832ea83f2205c56612d3506332.tar.bz2 yosys-06750987331a3d832ea83f2205c56612d3506332.zip |
added hashlib::mkhash_init
Diffstat (limited to 'kernel/rtlil.cc')
-rw-r--r-- | kernel/rtlil.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rtlil.cc b/kernel/rtlil.cc index 912df7903..cd2232c8c 100644 --- a/kernel/rtlil.cc +++ b/kernel/rtlil.cc @@ -2325,7 +2325,7 @@ void RTLIL::SigSpec::updhash() const cover("kernel.rtlil.sigspec.hash"); that->pack(); - that->hash_ = 5381; + that->hash_ = mkhash_init; for (auto &c : that->chunks_) if (c.wire == NULL) { for (auto &v : c.data) |