mirror of https://github.com/YosysHQ/yosys.git
abc9_ops: suppress -prep_box warning for abc9_flop
This commit is contained in:
parent
376319dc8d
commit
88d5997c80
|
@ -670,7 +670,7 @@ void prep_box(RTLIL::Design *design, bool dff_mode)
|
|||
ss << std::endl;
|
||||
|
||||
auto &t = timing.setup_module(module).comb;
|
||||
if (t.empty())
|
||||
if (!abc9_flop && t.empty())
|
||||
log_warning("(* abc9_box *) module '%s' has no timing (and thus no connectivity) information.\n", log_id(module));
|
||||
|
||||
for (const auto &o : outputs) {
|
||||
|
|
Loading…
Reference in New Issue