mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 06:07:26 +02:00
Implemented correct handling of signed module parameters
This commit is contained in:
@@ -239,7 +239,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);
|
||||
derived_name = tpl->derive(map, parameters, cell->signed_parameters);
|
||||
tpl = map->modules[derived_name];
|
||||
log_continue = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user