be more verbose when techmap yielded processes

This commit is contained in:
Johann Glaser 2014-05-26 17:13:41 +02:00
parent 68c059565a
commit 684c85902d
1 changed files with 5 additions and 1 deletions

View File

@ -106,8 +106,12 @@ struct TechmapWorker
if (tpl->memories.size() != 0)
log_error("Technology map yielded memories -> this is not supported.\n");
if (tpl->processes.size() != 0)
if (tpl->processes.size() != 0) {
log("Technology map yielded processes:\n");
for (auto &it : tpl->processes)
log(" %s",RTLIL::id2cstr(it.first));
log_error("Technology map yielded processes -> this is not supported.\n");
}
// erase from namespace first for _TECHMAP_REPLACE_ to work
module->cells.erase(cell->name);