3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-13 04:28:18 +00:00

Fixed undef handling in opt_reduce

This commit is contained in:
Clifford Wolf 2014-03-06 14:18:34 +01:00
parent 973507d85b
commit 9b9c3327cc

View file

@ -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;