diff options
author | Clifford Wolf <clifford@clifford.at> | 2019-06-05 09:26:44 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2019-06-05 09:26:44 +0200 |
commit | 4190d7c09477f4bdd35cbd7bf5388254764b2321 (patch) | |
tree | 23378184b31f738edd504f435826dbd018f24b39 /passes/sat/fmcombine.cc | |
parent | 1332051f331108e73ac468f226034720bd856281 (diff) | |
download | yosys-4190d7c09477f4bdd35cbd7bf5388254764b2321.tar.gz yosys-4190d7c09477f4bdd35cbd7bf5388254764b2321.tar.bz2 yosys-4190d7c09477f4bdd35cbd7bf5388254764b2321.zip |
Fix typo in fmcombine log message, fixes #1063
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'passes/sat/fmcombine.cc')
-rw-r--r-- | passes/sat/fmcombine.cc | 4 |
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(); |