Fix typo in fmcombine log message, fixes #1063
authorClifford Wolf <clifford@clifford.at>
Wed, 5 Jun 2019 07:26:44 +0000 (09:26 +0200)
committerClifford Wolf <clifford@clifford.at>
Wed, 5 Jun 2019 07:26:44 +0000 (09:26 +0200)
Signed-off-by: Clifford Wolf <clifford@clifford.at>
passes/sat/fmcombine.cc

index f64d99dc2fabf3aab34f3b5a4efc19716cf1e738..00c098542c29274ba503c2ccb63c15e4af4a21ae 100644 (file)
@@ -332,7 +332,7 @@ struct FmcombinePass : public Pass {
 
                        gate_cell = module->cell(gate_name);
                        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
                {
@@ -351,7 +351,7 @@ struct FmcombinePass : public Pass {
                if (!gold_cell->parameters.empty())
                        log_cmd_error("Gold cell has unresolved instance parameters.\n");
                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);
                worker.generate();