aboutsummaryrefslogtreecommitdiffstats
path: root/passes/sat/fmcombine.cc
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-06-05 09:56:57 -0700
committerEddie Hung <eddie@fpgeh.com>2019-06-05 09:56:57 -0700
commitbcc0a5d136fb6a7f375761f53e6696be370f9d94 (patch)
treec9348fe68a1e27f9d3d91f38b842e4c8d877453b /passes/sat/fmcombine.cc
parentb5aff1de0432e79fb26cc87a2bbd4aae5f4b0dfb (diff)
parentf15b5e630950aaff9c840a0aa8310d0117aad166 (diff)
downloadyosys-bcc0a5d136fb6a7f375761f53e6696be370f9d94.tar.gz
yosys-bcc0a5d136fb6a7f375761f53e6696be370f9d94.tar.bz2
yosys-bcc0a5d136fb6a7f375761f53e6696be370f9d94.zip
Merge remote-tracking branch 'origin/master' into xc7mux
Diffstat (limited to 'passes/sat/fmcombine.cc')
-rw-r--r--passes/sat/fmcombine.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/passes/sat/fmcombine.cc b/passes/sat/fmcombine.cc
index f64d99dc2..00c098542 100644
--- a/passes/sat/fmcombine.cc
+++ b/passes/sat/fmcombine.cc
@@ -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();