Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions passes/sat/sim.cc
Original file line number Diff line number Diff line change
Expand Up @@ -649,10 +649,11 @@ struct SimInstance
if (cell->type == ID($print))
return;

// If the cell is a blackbox child of an instance root module, skip it
// In -bb mode every hierarchical cell is a cut boundary. Its outputs were already sourced from the FST.
// Don't log error for these cells.
if (shared->blackbox_children) {
Module *mod = module->design->module(cell->type);
if (mod && shared->instance_root_modules.count(mod->name))
if (mod)
return;
}

Expand Down
Loading