diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-10-31 12:27:07 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-10-31 12:27:07 +0100 |
commit | 0efe16f118e20e30b5fce152cf668a0929a08439 (patch) | |
tree | e4f9b00bac53f4a68183b1ffd9193e11a5562cdf /passes/techmap | |
parent | 961eaa0077d4fe804ee63147752b9f2697d8b683 (diff) | |
download | yosys-0efe16f118e20e30b5fce152cf668a0929a08439.tar.gz yosys-0efe16f118e20e30b5fce152cf668a0929a08439.tar.bz2 yosys-0efe16f118e20e30b5fce152cf668a0929a08439.zip |
Added placeholder check to dfflibmap and cleaned up some other placeholder checks
Diffstat (limited to 'passes/techmap')
-rw-r--r-- | passes/techmap/dfflibmap.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/techmap/dfflibmap.cc b/passes/techmap/dfflibmap.cc index 111f2f919..bebf7ce63 100644 --- a/passes/techmap/dfflibmap.cc +++ b/passes/techmap/dfflibmap.cc @@ -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(); |