From: Clifford Wolf Date: Mon, 10 Jun 2013 10:38:02 +0000 (+0200) Subject: Fixed generation of newlines in "dump" output X-Git-Tag: yosys-0.2.0~587 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=af79b4bd9827ec0c8aff284a44e861ab0d0efff1;p=yosys.git Fixed generation of newlines in "dump" output --- diff --git a/backends/ilang/ilang_backend.cc b/backends/ilang/ilang_backend.cc index 9c74e61ca..503164d43 100644 --- a/backends/ilang/ilang_backend.cc +++ b/backends/ilang/ilang_backend.cc @@ -323,10 +323,11 @@ void ILANG_BACKEND::dump_module(FILE *f, std::string indent, const RTLIL::Module void ILANG_BACKEND::dump_design(FILE *f, const RTLIL::Design *design, bool only_selected) { for (auto it = design->modules.begin(); it != design->modules.end(); it++) { - if (it != design->modules.begin() || only_selected) - fprintf(f, "\n"); - if (!only_selected || design->selected(it->second)) + if (!only_selected || design->selected(it->second)) { + if (only_selected) + fprintf(f, "\n"); dump_module(f, "", it->second, design, only_selected); + } } }