From: Eddie Hung Date: Thu, 27 Jun 2019 03:02:38 +0000 (-0700) Subject: Improve debugging message for comb loops X-Git-Tag: working-ls180~1237^2~23 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=080a5ca536bcd7140ea3dc12483e49a8f076cd92;p=yosys.git Improve debugging message for comb loops --- diff --git a/backends/aiger/xaiger.cc b/backends/aiger/xaiger.cc index 7cfe8272c..92df899c2 100644 --- a/backends/aiger/xaiger.cc +++ b/backends/aiger/xaiger.cc @@ -293,10 +293,12 @@ struct XAigerWriter #if 0 unsigned i = 0; for (auto &it : toposort.loops) { - log(" loop %d", i++); - for (auto cell : it) - log(" %s", log_id(cell)); - log("\n"); + log(" loop %d\n", i++); + for (auto cell_name : it) { + auto cell = module->cell(cell_name); + log_assert(cell); + log("\t%s (%s @ %s)\n", log_id(cell), log_id(cell->type), cell->get_src_attribute().c_str()); + } } #endif log_assert(no_loops);