mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #793 from whitequark/proc_clean_fix_fully_def
proc_clean: fix fully def check to consider compare/signal length
This commit is contained in:
commit
c4b61f2d69
|
@ -82,9 +82,15 @@ void proc_clean_switch(RTLIL::SwitchRule *sw, RTLIL::CaseRule *parent, bool &did
|
||||||
{
|
{
|
||||||
if (max_depth != 0)
|
if (max_depth != 0)
|
||||||
proc_clean_case(cs, did_something, count, max_depth-1);
|
proc_clean_case(cs, did_something, count, max_depth-1);
|
||||||
|
int size = 0;
|
||||||
for (auto cmp : cs->compare)
|
for (auto cmp : cs->compare)
|
||||||
if (!cmp.is_fully_def())
|
{
|
||||||
|
size += cmp.size();
|
||||||
|
if (cmp.is_fully_def())
|
||||||
all_fully_def = false;
|
all_fully_def = false;
|
||||||
|
}
|
||||||
|
if (sw->signal.size() != size)
|
||||||
|
all_fully_def = false;
|
||||||
}
|
}
|
||||||
if (all_fully_def)
|
if (all_fully_def)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue