3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-06 06:03:23 +00:00

Added placeholder check to dfflibmap and cleaned up some other placeholder checks

This commit is contained in:
Clifford Wolf 2013-10-31 12:27:07 +01:00
parent 961eaa0077
commit 0efe16f118
3 changed files with 4 additions and 4 deletions

View file

@ -498,7 +498,7 @@ struct DfflibmapPass : public Pass {
logmap_all();
for (auto &it : design->modules)
if (design->selected(it.second))
if (design->selected(it.second) && !it.second->get_bool_attribute("\\placeholder"))
dfflibmap(design, it.second);
cell_mappings.clear();