diff options
author | whitequark <whitequark@whitequark.org> | 2020-06-03 20:06:04 +0000 |
---|---|---|
committer | whitequark <whitequark@whitequark.org> | 2020-06-04 12:22:59 +0000 |
commit | 5a5a9b4ffe8b38eca7dc4fdfc56a16d401022fa2 (patch) | |
tree | 1bf09065184092a8c171ed98ecfca3e274e29b22 | |
parent | d731fe054b8724997f5cf469018c03657d6e4f8a (diff) | |
download | yosys-5a5a9b4ffe8b38eca7dc4fdfc56a16d401022fa2.tar.gz yosys-5a5a9b4ffe8b38eca7dc4fdfc56a16d401022fa2.tar.bz2 yosys-5a5a9b4ffe8b38eca7dc4fdfc56a16d401022fa2.zip |
flatten: clean up log messages.
-rw-r--r-- | passes/techmap/flatten.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/techmap/flatten.cc b/passes/techmap/flatten.cc index 0a941d847..027bb137d 100644 --- a/passes/techmap/flatten.cc +++ b/passes/techmap/flatten.cc @@ -261,7 +261,7 @@ struct FlattenWorker continue; if (cell->get_bool_attribute(ID::keep_hierarchy) || tpl->get_bool_attribute(ID::keep_hierarchy)) { - log("Keeping %s.%s (found keep_hierarchy property).\n", log_id(module), log_id(cell)); + log("Keeping %s.%s (found keep_hierarchy attribute).\n", log_id(module), log_id(cell)); used_modules.insert(tpl); continue; } |