mirror of https://github.com/YosysHQ/yosys.git
Fix typo, double "of"
This commit is contained in:
parent
87db41a2bb
commit
6cce679b35
|
@ -551,7 +551,7 @@ struct LibertyFrontend : public Frontend {
|
||||||
if (design->has(cell_name)) {
|
if (design->has(cell_name)) {
|
||||||
Module *existing_mod = design->module(cell_name);
|
Module *existing_mod = design->module(cell_name);
|
||||||
if (!flag_nooverwrite && !flag_overwrite && !existing_mod->get_bool_attribute("\\blackbox")) {
|
if (!flag_nooverwrite && !flag_overwrite && !existing_mod->get_bool_attribute("\\blackbox")) {
|
||||||
log_error("Re-definition of of cell/module %s!\n", log_id(cell_name));
|
log_error("Re-definition of cell/module %s!\n", log_id(cell_name));
|
||||||
} else if (flag_nooverwrite) {
|
} else if (flag_nooverwrite) {
|
||||||
log("Ignoring re-definition of module %s.\n", log_id(cell_name));
|
log("Ignoring re-definition of module %s.\n", log_id(cell_name));
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in New Issue