Bugfix in techmap parameter handling

This commit is contained in:
Clifford Wolf 2016-09-14 20:46:54 +02:00
parent d39db41df8
commit d8ad889594
1 changed files with 1 additions and 1 deletions

View File

@ -639,7 +639,7 @@ struct TechmapWorker
if (techmap_cache.count(key) > 0) {
tpl = techmap_cache[key];
} else {
if (cell->parameters.size() != 0) {
if (parameters.size() != 0) {
derived_name = tpl->derive(map, dict<RTLIL::IdString, RTLIL::Const>(parameters.begin(), parameters.end()));
tpl = map->module(derived_name);
log_continue = true;