mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 22:23:23 +00:00
Replaced signed_parameters API with CONST_FLAG_SIGNED
This commit is contained in:
parent
93a70959f3
commit
f4b46ed31e
10 changed files with 11 additions and 16 deletions
|
@ -150,7 +150,7 @@ static bool expand_module(RTLIL::Design *design, RTLIL::Module *module, bool fla
|
|||
if (design->modules.at(cell->type)->get_bool_attribute("\\blackbox"))
|
||||
continue;
|
||||
RTLIL::Module *mod = design->modules[cell->type];
|
||||
cell->type = mod->derive(design, cell->parameters, cell->signed_parameters);
|
||||
cell->type = mod->derive(design, cell->parameters);
|
||||
cell->parameters.clear();
|
||||
did_something = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue