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

Fixes to enable keep_hierarchy

This commit is contained in:
Alain Dargelas 2025-03-11 10:26:02 -07:00
parent 4d4e574ebb
commit 8b928a8274
2 changed files with 15 additions and 2 deletions

View file

@ -42,7 +42,9 @@ struct ThresholdHierarchyKeeping {
return 0;
if (module->get_blackbox_attribute())
log_error("Missing cost information on instanced blackbox %s\n", log_id(module));
// SILIMATE: Blackboxes have no bearing on cross module optimizations
// log_error("Missing cost information on instanced blackbox %s\n", log_id(module));
return 1;
if (done.count(module))
return done.at(module);