mirror of https://github.com/YosysHQ/yosys.git
Revert "Be mindful that sigmap(wire) could have dupes when checking \init"
This reverts commit f46ac1df9f
.
This commit is contained in:
parent
cfc181cba9
commit
ea54b5ea61
|
@ -265,18 +265,15 @@ struct SatHelper
|
|||
RTLIL::SigSpec rhs = it.second->attributes.at("\\init");
|
||||
log_assert(lhs.size() == rhs.size());
|
||||
|
||||
dict<RTLIL::SigBit,SigBit> seen_init;
|
||||
RTLIL::SigSpec removed_bits;
|
||||
for (int i = 0; i < lhs.size(); i++) {
|
||||
RTLIL::SigSpec bit = lhs.extract(i, 1);
|
||||
if (rhs[i] == State::Sx || !satgen.initial_state.check_all(bit) || seen_init.at(bit, rhs[i]) != rhs[i]) {
|
||||
if (rhs[i] == State::Sx || !satgen.initial_state.check_all(bit)) {
|
||||
removed_bits.append(bit);
|
||||
lhs.remove(i, 1);
|
||||
rhs.remove(i, 1);
|
||||
i--;
|
||||
}
|
||||
else
|
||||
seen_init[bit] = rhs[i];
|
||||
}
|
||||
|
||||
if (removed_bits.size())
|
||||
|
|
Loading…
Reference in New Issue