mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Fix typo in fmcombine log message, fixes #1063
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
1332051f33
commit
4190d7c094
|
@ -332,7 +332,7 @@ struct FmcombinePass : public Pass {
|
||||||
|
|
||||||
gate_cell = module->cell(gate_name);
|
gate_cell = module->cell(gate_name);
|
||||||
if (gate_cell == nullptr)
|
if (gate_cell == nullptr)
|
||||||
log_cmd_error("Gold cell %s not found in module %s.\n", log_id(gate_name), log_id(module));
|
log_cmd_error("Gate cell %s not found in module %s.\n", log_id(gate_name), log_id(module));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -351,7 +351,7 @@ struct FmcombinePass : public Pass {
|
||||||
if (!gold_cell->parameters.empty())
|
if (!gold_cell->parameters.empty())
|
||||||
log_cmd_error("Gold cell has unresolved instance parameters.\n");
|
log_cmd_error("Gold cell has unresolved instance parameters.\n");
|
||||||
if (!gate_cell->parameters.empty())
|
if (!gate_cell->parameters.empty())
|
||||||
log_cmd_error("Gold cell has unresolved instance parameters.\n");
|
log_cmd_error("Gate cell has unresolved instance parameters.\n");
|
||||||
|
|
||||||
FmcombineWorker worker(design, gold_cell->type, opts);
|
FmcombineWorker worker(design, gold_cell->type, opts);
|
||||||
worker.generate();
|
worker.generate();
|
||||||
|
|
Loading…
Reference in a new issue