mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-24 01:25:33 +00:00
Added placeholder check to dfflibmap and cleaned up some other placeholder checks
This commit is contained in:
parent
961eaa0077
commit
0efe16f118
3 changed files with 4 additions and 4 deletions
|
@ -298,7 +298,7 @@ struct BlifBackend : public Backend {
|
|||
for (auto module_it : design->modules)
|
||||
{
|
||||
RTLIL::Module *module = module_it.second;
|
||||
if ((module->get_bool_attribute("\\placeholder")) > 0)
|
||||
if (module->get_bool_attribute("\\placeholder"))
|
||||
continue;
|
||||
|
||||
if (module->processes.size() != 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue