3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-05-02 21:37:04 +00:00

Merge branch 'master' of https://github.com/ahmedirfan1983/yosys into btor

This commit is contained in:
Ahmed Irfan 2014-01-17 19:07:41 +01:00
commit fc3f2961be
4 changed files with 119 additions and 7 deletions

View file

@ -227,6 +227,9 @@ struct RTLIL::Selection {
if (!full_selection && selected_modules.count(module->name) == 0)
selected_members[module->name].insert(member->name);
}
bool empty() const {
return !full_selection && selected_modules.empty() && selected_members.empty();
}
};
struct RTLIL::Design {