diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-10-24 11:27:30 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-10-24 11:27:30 +0200 |
commit | e9dede01ca8834ea3c211862a5d6c0119b2b578a (patch) | |
tree | b4c2d02cefb1dce8976a222b34c7c8f53d7b4a84 /backends/edif | |
parent | 23cf23418cd28b98c11a1ed3fb45dbb927f48e65 (diff) | |
download | yosys-e9dede01ca8834ea3c211862a5d6c0119b2b578a.tar.gz yosys-e9dede01ca8834ea3c211862a5d6c0119b2b578a.tar.bz2 yosys-e9dede01ca8834ea3c211862a5d6c0119b2b578a.zip |
Fixed handling of boolean attributes (backends)
Diffstat (limited to 'backends/edif')
-rw-r--r-- | backends/edif/edif.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/edif/edif.cc b/backends/edif/edif.cc index 4e38029a9..f898dc6d7 100644 --- a/backends/edif/edif.cc +++ b/backends/edif/edif.cc @@ -118,7 +118,7 @@ struct EdifBackend : public Backend { for (auto module_it : design->modules) { RTLIL::Module *module = module_it.second; - if ((module->attributes.count("\\placeholder") > 0) > 0) + if (module->get_bool_attribute("\\placeholder")) continue; if (top_module_name.empty()) @@ -132,7 +132,7 @@ struct EdifBackend : public Backend { for (auto cell_it : module->cells) { RTLIL::Cell *cell = cell_it.second; - if (!design->modules.count(cell->type) || design->modules.at(cell->type)->attributes.count("\\placeholder")) { + if (!design->modules.count(cell->type) || design->modules.at(cell->type)->get_bool_attribute("\\placeholder")) { lib_cell_ports[cell->type]; for (auto p : cell->connections) { if (p.second.width > 1) @@ -200,7 +200,7 @@ struct EdifBackend : public Backend { for (auto module_it : design->modules) { RTLIL::Module *module = module_it.second; - if ((module->attributes.count("\\placeholder") > 0) > 0) + if (module->get_bool_attribute("\\placeholder")) continue; SigMap sigmap(module); |