mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 06:07:26 +02:00
design: -import to not count black/white-boxes as candidates for top
This commit is contained in:
@@ -228,14 +228,20 @@ struct DesignPass : public Pass {
|
||||
}
|
||||
|
||||
if (import_mode) {
|
||||
std::vector<RTLIL::Module*> candidates;
|
||||
for (auto module : copy_src_modules)
|
||||
{
|
||||
if (module->get_bool_attribute(ID::top)) {
|
||||
copy_src_modules.clear();
|
||||
copy_src_modules.push_back(module);
|
||||
candidates.clear();
|
||||
candidates.push_back(module);
|
||||
break;
|
||||
}
|
||||
if (!module->get_blackbox_attribute())
|
||||
candidates.push_back(module);
|
||||
}
|
||||
|
||||
if (GetSize(candidates) == 1)
|
||||
copy_src_modules = std::move(candidates);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user