mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-14 06:45:26 +00:00
Sync with upstream
This commit is contained in:
commit
5c514e00a4
15 changed files with 183 additions and 79 deletions
|
@ -17,6 +17,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include <inttypes.h>
|
||||
#include "kernel/yosys.h"
|
||||
#include "kernel/cost.h"
|
||||
|
||||
|
@ -66,7 +67,7 @@ struct ThresholdHierarchyKeeping {
|
|||
}
|
||||
|
||||
if (size > threshold) {
|
||||
log("Keeping %s (estimated size above threshold: %llu > %llu).\n", log_id(module), size, threshold);
|
||||
log("Keeping %s (estimated size above threshold: %" PRIu64 " > %" PRIu64 ").\n", log_id(module), size, threshold);
|
||||
module->set_bool_attribute(ID::keep_hierarchy);
|
||||
size = 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue