aboutsummaryrefslogtreecommitdiffstats
path: root/passes/hierarchy
diff options
context:
space:
mode:
Diffstat (limited to 'passes/hierarchy')
-rw-r--r--passes/hierarchy/hierarchy.cc1
-rw-r--r--passes/hierarchy/submod.cc4
2 files changed, 3 insertions, 2 deletions
diff --git a/passes/hierarchy/hierarchy.cc b/passes/hierarchy/hierarchy.cc
index d27fddf1c..eea6abb04 100644
--- a/passes/hierarchy/hierarchy.cc
+++ b/passes/hierarchy/hierarchy.cc
@@ -1058,6 +1058,7 @@ struct HierarchyPass : public Pass {
if (tmp_top_mod != NULL) {
if (tmp_top_mod != top_mod){
top_mod = tmp_top_mod;
+ top_mod->attributes[ID::initial_top] = RTLIL::Const(1);
did_something = true;
}
}
diff --git a/passes/hierarchy/submod.cc b/passes/hierarchy/submod.cc
index c0c40671d..8476d392c 100644
--- a/passes/hierarchy/submod.cc
+++ b/passes/hierarchy/submod.cc
@@ -348,8 +348,8 @@ struct SubmodPass : public Pass {
log("\n");
log(" -hidden\n");
log(" instead of creating submodule ports with public names, create ports with\n");
- log(" private names so that a subsequent 'flatten; clean' call will restore the\n");
- log(" original module with original public names.\n");
+ log(" private names so that a subsequent 'flatten; clean' call will restore\n");
+ log(" the original module with original public names.\n");
log("\n");
}
void execute(std::vector<std::string> args, RTLIL::Design *design) override