mirror of https://github.com/YosysHQ/yosys.git
Fixed undef handling in opt_reduce
This commit is contained in:
parent
973507d85b
commit
9b9c3327cc
|
@ -65,8 +65,8 @@ struct OptReduceWorker
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (chunk.wire == NULL) {
|
if (chunk.wire == NULL) {
|
||||||
new_sig_a = RTLIL::SigSpec(RTLIL::State::Sx);
|
new_sig_a.append(chunk);
|
||||||
break;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool imported_children = false;
|
bool imported_children = false;
|
||||||
|
|
Loading…
Reference in New Issue