mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-08 12:11:24 +00:00
Fixed handling of constant-true branches in proc_clean
This commit is contained in:
parent
1dd8252169
commit
9d353fc543
2 changed files with 3 additions and 2 deletions
|
@ -31,7 +31,7 @@ static void proc_rmdead(RTLIL::SwitchRule *sw, int &counter)
|
|||
|
||||
for (size_t i = 0; i < sw->cases.size(); i++)
|
||||
{
|
||||
bool is_default = sw->cases[i]->compare.size() == 0 && !pool.empty();
|
||||
bool is_default = SIZE(sw->cases[i]->compare) == 0 && (!pool.empty() || SIZE(sw->signal) == 0);
|
||||
|
||||
for (size_t j = 0; j < sw->cases[i]->compare.size(); j++) {
|
||||
RTLIL::SigSpec sig = sw->cases[i]->compare[j];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue