mirror of https://github.com/YosysHQ/yosys.git
Print a note about finding attribute (* top *) in hierarchy
This commit is contained in:
parent
7cfc49791f
commit
96c526d1ba
|
@ -1003,8 +1003,10 @@ struct HierarchyPass : public Pass {
|
|||
|
||||
if (top_mod == nullptr)
|
||||
for (auto mod : design->modules())
|
||||
if (mod->get_bool_attribute(ID::top))
|
||||
if (mod->get_bool_attribute(ID::top)) {
|
||||
log("Attribute `top' found on module `%s'. Setting top module to %s.\n", log_id(mod), log_id(mod));
|
||||
top_mod = mod;
|
||||
}
|
||||
|
||||
if (top_mod == nullptr)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue