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
1 changed files with 2 additions and 2 deletions

View File

@ -65,8 +65,8 @@ struct OptReduceWorker
continue;
}
if (chunk.wire == NULL) {
new_sig_a = RTLIL::SigSpec(RTLIL::State::Sx);
break;
new_sig_a.append(chunk);
continue;
}
bool imported_children = false;