Print a note about finding attribute (* top *) in hierarchy

This commit is contained in:
N. Engelhardt 2024-11-13 10:21:44 +01:00
parent 7cfc49791f
commit 96c526d1ba
1 changed files with 3 additions and 1 deletions

View File

@ -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)
{