3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 01:24:10 +00:00

Makes sure to set initial_top when change, fixes #3462

This commit is contained in:
Miodrag Milanovic 2022-08-26 17:12:56 +02:00
parent 060cbd3e9e
commit 4bc1e1d1f1

View file

@ -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;
}
}