mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 22:23:23 +00:00
Fixed undef handling in opt_reduce
This commit is contained in:
parent
973507d85b
commit
9b9c3327cc
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue