projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d39db41
)
Bugfix in techmap parameter handling
author
Clifford Wolf
<clifford@clifford.at>
Wed, 14 Sep 2016 18:46:54 +0000
(20:46 +0200)
committer
Clifford Wolf
<clifford@clifford.at>
Wed, 14 Sep 2016 18:46:54 +0000
(20:46 +0200)
passes/techmap/techmap.cc
patch
|
blob
|
history
diff --git
a/passes/techmap/techmap.cc
b/passes/techmap/techmap.cc
index 1ab6df1dcf4c9202866f6d7a9d5a555586419419..b2cc492b2fc99e54a4c6397012d64c12f3dc7111 100644
(file)
--- a/
passes/techmap/techmap.cc
+++ b/
passes/techmap/techmap.cc
@@
-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;