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 /backends/blif | |
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 'backends/blif')
-rw-r--r-- | backends/blif/blif.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/blif/blif.cc b/backends/blif/blif.cc index 747ba17d3..e8909b91a 100644 --- a/backends/blif/blif.cc +++ b/backends/blif/blif.cc @@ -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) |