summaryrefslogtreecommitdiff
path: root/passes/techmap
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2013-12-04 14:24:44 +0100
committerClifford Wolf <clifford@clifford.at>2013-12-04 14:24:44 +0100
commitf4b46ed31e5f5c41bbd4ee1fdf996ecdc2010174 (patch)
treeab513e840494e2be4b04149a149f7c12e605e7e4 /passes/techmap
parent93a70959f3f67ffcee8159b18a5f68904e32a074 (diff)
Replaced signed_parameters API with CONST_FLAG_SIGNED
Diffstat (limited to 'passes/techmap')
-rw-r--r--passes/techmap/techmap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/techmap/techmap.cc b/passes/techmap/techmap.cc
index 8dd96b83..08e31408 100644
--- a/passes/techmap/techmap.cc
+++ b/passes/techmap/techmap.cc
@@ -259,7 +259,7 @@ static bool techmap_module(RTLIL::Design *design, RTLIL::Module *module, RTLIL::
tpl = techmap_cache[key];
} else {
if (cell->parameters.size() != 0) {
- derived_name = tpl->derive(map, parameters, cell->signed_parameters);
+ derived_name = tpl->derive(map, parameters);
tpl = map->modules[derived_name];
log_continue = true;
}